Google 云负载均衡器未返回内容编码:gzip

Google 云负载均衡器未返回内容编码:gzip

我正在使用位于 nginx 后端服务前面的 google cloud 负载均衡器(以 google cloud 术语而言)。

当我直接访问 nginx 服务器时,我可以看到“Content-Encoding: gzip”标头(左侧)。

但是来自负载均衡器的响应不包含此标头(右侧)。

在此处输入图片描述

我已经在 nginx 配置文件中启用了 gzip_proxied:

server {

   listen 80;
    gzip on;
    gzip_vary on;
    gzip_proxied any;  // <------ Here
    gzip_types text/plain text/css text/js text/xml text/javascript application/javascript application/x-javascript application/json application/xml application/rss+xml image/svg+xml;

    access_log  /var/log/nginx/access.log;
    error_log   /var/log/nginx/error.log;

    root /usr/share/nginx/html;
    index index.html index.htm;

    location / {
        gzip_static on;
        if ($http_x_forwarded_proto = "http") {
            return 301 https://$host$request_uri;
        }
        try_files $uri $uri/ /index.html;
    }
}

无效的相关链接: https://stackoverflow.com/questions/35947469/google-cloud-http-balancer-and-gzip

有任何想法吗?

答案1

我发布这个社区维基答案以使解决方案更加引人注目。

正如@Mohibul Mahmud在评论部分这个问题是已经回答

云负载均衡器本身不会压缩或解压缩响应。它们提供由后端实例生成的响应,这些响应使用以下方式压缩:压缩.您需要启用gzip 代理

为了在负载均衡器的响应中包含此标头,在 nginx 配置文件中,您可能必须设置一个 Accept-Encoding 标头并修改用户代理以包含字符串代理,如中所述这个文件

例如:

接受编码:gzip

用户代理:我的程序 (gzip)

相关内容