2013-02-24 18 views
3

虽然与龙卷风的工作,我发现的gzip =真正的功能,而在命令行中运行的应用程序,以下设置工作正常:tornadoweb的gzip =真下supervisord和nginx的工作不

define("port", default=settings.LISTEN_PORT, help="run on the given port", type=int) 
define("debug", default=True, help="run in debug mode", type=bool) 
define("dont_optimize_static_content", default=False, 
     help="Don't combine static resources", type=bool) 
define("dont_embed_static_url", default=False, 
     help="Don't put embed the static URL in static_url()", type=bool) 

tornado.options.parse_command_line() 
tornado.options.options['log_file_prefix'].set('/var/log/tmp.log') 

app_settings = dict(
    template_path=os.path.join(os.path.dirname(__file__), "templates"), 
    static_path=os.path.join(os.path.dirname(__file__), "static"), 
    xsrf_cookies=False, 
    gzip=True, 
    debug=True, 
) 

然而,部署应用程序与supervisord/nginx响应从龙卷风服务器不gziped。

[program:app-8001] 
command=python /var/app/server/app.py --port=8001 --logging=debug ----dont_optimize_static_content=False 
directory=/var/app/server/ 
stderr_logfile = /var/log/app-stderr.log 
stderr_logfile_backups=10 
stdout_logfile = /var/log/app-stdout.log 
stdout_logfile_backups=10 
process_name=%(program_name)s 
loglevel=debug 

任何想法我做错了什么?

+0

不是我认为这是你的bug,而是你在supervisor命令中有太多'----'。 – koblas 2013-02-25 02:33:01

+0

对不起,它不是... – user1632928 2013-02-25 07:46:52

回答

1

默认情况下,nginx在向Tornado(或任何其他任何东西)发送请求时不会执行HTTP/1.1请求。龙卷风需要HTTP/1.1支持才能返回gzip的内容。从web.py

def __init__(self, request): 
    self._gzipping = request.supports_http_1_1() and \ 
     "gzip" in request.headers.get("Accept-Encoding", "") 

重要的代码片段应该是通过添加以下到您的配置文件覆写投放 - 但它不会对我的实例运行。

proxy_http_version 1.1;