gzip download 不生效的问题

来源:3-5 Nginx作为静态资源web服务_场景演示

乔木子

2019-05-13

server {
listen 80;
server_name 47.100.252.XX;
sendfile on;
#charset koi8-r;
access_log /var/log/nginx/host.access.log main;

location ~ .*.(jpg|gif|png)$ {
gzip on;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/git image/png;
root /opt/app/download;
}

location ~ .*.(txt|xml)$ {
gzip on;
gzip_http_version 1.1;
gzip_comp_level 1;
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/git image/png;
root /opt/app/download;
}
location ~ ^/download {
gzip_static on;
tcp_nopush on;
root /opt/app/download;
}

#error_page  404              /404.html;

# redirect server error pages to the static page /50x.html
#
error_page   500 502 503 504 404  /50x.html;
location = /50x.html {
    root   /usr/share/nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#    proxy_pass   http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
#    root           html;
#    fastcgi_pass   127.0.0.1:9000;
#    fastcgi_index  index.php;
#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
#    include        fastcgi_params;
#}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny  all;
#}

}

可以确定是 download 下 也就是 /opt/app/download 下面是有图片的
图片描述

麻烦老师、同学指导一下 浏览器提示404

写回答

1回答

Jeson

2019-05-14

请问,你浏览器访问的哪个URL,另外可以看下Nginx access日志,有没有对应的记录?

0
2
乔木子
老师我在Nginx 2群里发图片给你看了
2019-05-14
共2条回复

Nginx入门到实践-Nginx中间件应用+搭建Webserver架构

中间件、负载均衡、应用层安全防护、动静分离、Nginx+LUA开发等

4183 学习 · 908 问题

查看课程