nginx:gzip 压缩配置没有错误但输出未被压缩

nginx:gzip 压缩配置没有错误但输出未被压缩

我尝试了所有办法之后,我的 nginx 中的 gzip 压缩仍然不起作用。

环境:

  • Ubuntu 11.04nginx ppa,最新版本(1.0.8)
  • 带有 proxy_pass 的包中的 PHP5-FPM 后端。

主要 nginx 配置:

user www-data;
worker_processes 2;

error_log  /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;

events {
  worker_connections 1024;
  use epoll;
}


http {
  server_names_hash_bucket_size 64;
  sendfile on;
  tcp_nopush  on;
  tcp_nodelay off;

  client_max_body_size 64M;

  include /etc/nginx/mime.types;

  default_type text/html;

  types_hash_max_size 8192;

  log_format main '$remote_addr - $remote_user [$time_local] '
                '"$request" $status $body_bytes_sent "$http_referer" '
                '"$http_user_agent" "$http_x_forwarded_for"' ;

  access_log /var/log/nginx/access.log main;

  ## Compression
  gzip on;
  gzip_min_length 1000;
  gzip_http_version 1.1;
  gzip_comp_level 1;
  gzip_proxied any;
  gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;

  include /etc/nginx/sites-enabled/*;
}

我删除了 gzip_disable,我在 Ubuntu 上看到了有关它的错误。

nginx编译配置:

apt-get source nginx

auto/options 包含:

HTTP_GZIP=YES
HTTP_GZIP_STATIC=NO

请有人告诉我我错过了什么。

答案1

我真的不明白发生了什么,但不知何故它又活了过来。我没有做任何改变,只是重启了 VPS。这绝对很奇怪。

答案2

您需要重新加载或重启 nginx

如果您没有这样做,那么重新启动操作系统也会为您实现同样的效果(尽管这可能是不必要的)。

相关内容