Nginx反向代理另一个使用Gzip模块的Nginx服务时,发现出现404错误:

检查目录,发现这些文件都是以gz结束:

第一步,检查是否安装http_gzip_static_module(如果未暗转个,请自行安装):

第二步,两个nginx服务都开启Gzip模块支持:

第三步,浏览器验证gzip文件是否可以访问到:

如果能访问到,说明Nginx代理的Gzip服务静态资源是可以的。
第四步,配置Nginx 代理Gzip所在的Nginx服务:
https配置:
server{
listen 443 ssl;
server_name your.server.name;
index index.html index.htm default.html default.htm;
ssl_certificate /path/to/nginx/cert/7663123_sjgcc.ahhfky.com.pem;
ssl_certificate_key /path/to/nginx/cert/7663123_sjgcc.ahhfky.com.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
gzip on;
gzip_static on;
location / {
proxy_pass http://ip:port/;
index index.html;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Upgrade-Insecure-Requests 1;
proxy_set_header X-Forwarded-Proto https;
}
}
http代理配置:
server {
listen 80;
server_name your.server.name;
location / {
proxy_pass http://ip:port;
index index.html;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header Upgrade-Insecure-Requests 1;
proxy_set_header X-Forwarded-Proto https;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
第五步:最关键的一点,要配置http中http_gzip_static_module生效的版本:

因为默认情况下,http在1.0版本之前是不支持gzip压缩的。
nginx 反向代理服务器到真实应用服务器的请求,使用的http协议版本为1.0。早期浏览器不支持 gzip压缩,因为早期都是http 1.0协议,所以gzip 默认在 http 1.0 协议下是不生效的。
gzip_http_version 参数是用来识别并控制gzip 在什么版本的 http 协议中生效的,这里设置为1.0 表示 http 1.0 协议下,gzip 仍旧打开

所以要配置:
http {
gzip on;
gzip_static on;
gzip_http_version 1.0;
}
当Nginx反向代理到使用Gzip的Nginx服务时遇到404错误,可通过检查http_gzip_static_module、确保双方Gzip支持、验证gzip文件可访问、正确配置代理及设置gzip_http_version为1.0来解决问题。确保Nginx在HTTP 1.0协议下也能支持gzip压缩。
1505

被折叠的 条评论
为什么被折叠?



