Nginx + Ubuntu 9.10,gzip 不起作用

Nginx + Ubuntu 9.10,gzip 不起作用

因此我在新的 Slicehost Ubuntu 9.10 分片上安装并配置了 Nginx 0.7.62。

服务器似乎一切正常,只是 gzip 由于某种原因无法正常工作。我确保它在 /etc/nginx/nginx.conf 中的设置正确:

user www-data;
worker_processes 3;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
    worker_connections 1024;
    # multi_accept on;
}

http {
    include /etc/nginx/mime.types;
    access_log /var/log/nginx/access.log;

    sendfile on;
    #tcp_nopush on;

    keepalive_timeout 2;
    tcp_nodelay on;

    gzip on;
    gzip_comp_level 2;
    gzip_proxied any;
    gzip_types text/plain text/css application/x-javascript;
    gzip_disable "MSIE [1-6]\.";

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

这通常不是什么大问题,但 gzip 支持可以为我的网站节省大量带宽。有人知道要检查什么吗,或者有其他人遇到过这个问题吗?

答案1

谢谢大家的帮助。我设法弄清楚了……(很奇怪,仍然不知道为什么)

在 Ubuntu 9.10,Nginx 0.7.62 中:

  1. 我首先尝试使用 gzip_disable "MSIE [1-6]."; #still broken
  2. 然后我将其切换为 gzip_disable "msie6"; #still broken
  3. 我把 gzip_disabled 行全部注释掉了,解决了这个问题

希望这可以为其他人节省一些时间。

答案2

Passenger 现在会在安装 nginx 时编译 gzip 模块。现在走这条路要容易得多

答案3

尝试将其放入nginx.conf

gzip on;
gzip_vary on;
gzip_min_length  1100;
gzip_comp_level 1;
gzip_http_version 1.0;
gzip_proxied any;
gzip_disable "msie6";
gzip_types  text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;

答案4

所有来自 l1x 的建议都已核实。有人有什么想法吗?该软件包是使用 apt-get 安装的(因此是预编译的)...

相关内容