我使用 Nginx 作为服务器的反向代理,并启用了 gzip 压缩。这是我的 nginx.conf 中的相关配置:
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# Gzip Settings
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
server {
listen localhost:8090;
location / {
client_max_body_size 100M;
proxy_pass http://localhost:3090;
proxy_read_timeout 600s;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}
据我了解,NGINX 在充当反向代理时可以压缩内容,即使代理服务器本身不执行压缩?
使用此配置,当我发出 GET 请求时,数据会以压缩形式到达,但对于 POST 请求,数据似乎并未经过 gzip 压缩。 谁能帮助我理解为什么会发生这种情况以及如何确保 POST 请求的 gzip 压缩?