2015-12-08 108 views

回答

0

在cherrypy配置文件上使用tools.gzip.on: True。 看到這個link

而且相反,如果你可以使用uwsgi,你可以將它添加到您的配置:

route-if = contains:${HTTP_ACCEPT_ENCODING};gzip goto:mygzipper 
route-run = last: 

route-label = mygzipper 
; pass the response to the gzip transformation 
route = .* delheader:Content-Length 
route = .* gzip: 
相關問題