使用Nginx + Gzip + Unicorn时缺少Content-Length标头

时间:2013-03-01 10:35:20

标签: ruby-on-rails nginx gzip unicorn

我不知道为什么http响应错过了“Content-Length header”当我在nginx中使用gzip时,我真的卡住了,请有人帮助我,非常感谢你! 这是我的配置文件,

nginx.conf

用户无人;     worker_processes 8;

events {
    worker_connections  1024;
    accept_mutex on; # "on" if nginx worker_processes > 1
    use epoll; # enable for Linux 2.6+
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    upstream backend-unicorn {
        server unix:/tmp/unicorn_app.sock fail_timeout=0;
        #server localhost:5000;
    }
    #access_log  logs/access.log  main;
    sendfile        on;
    keepalive_timeout  100;
    gzip on;
    gzip_static on;
    gzip_proxied any;
    gzip_http_version 1.1;
    gzip_comp_level 6;
    gzip_min_length  1100;
    gzip_buffers 16 8k;
    gzip_types text/plain application/zip text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript image$

    server {
        listen       8080;
        server_name  misago;
        access_log  /var/log/nginx/unicorn.access.log  main;
        client_max_body_size 64M;
        location /uploads/ {
            root /usr/local/rails_apps/me_management_tool/current/public/uploads;
            break;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

    }

}

2 个答案:

答案 0 :(得分:3)

  

当我在nginx中使用gzip时,我不知道为什么http响应错过了“Content-Length header”

因为在这种情况下,内容的长度在发送标头时是未知的。 Nginx无法知道内容的压缩程度。

答案 1 :(得分:0)

以下是一种高性能的Nginx解决方案,用于向Gzip响应添加x-file-size标头。此处有完整讨论:https://github.com/AnthumChris/fetch-progress-indicators/issues/13

location / {
  ## Nginx Lua module must be installed https://docs.nginx.com/nginx/admin-guide/dynamic-modules/lua/
  ## https://github.com/openresty/lua-nginx-module#header_filter_by_lua
  header_filter_by_lua_block {
    function file_len(file_name)
      local file = io.open(file_name, "r")

      if (file == nil) then return -1 end

      local size = file:seek("end")
      file:close()
      return size
    end

    ngx.header["X-File-Size"] = file_len(ngx.var.request_filename);
  }
}
相关问题