浏览代码

add support for gzip_disable

tags/v0.55.0
Kent Shultz 10 年前
父节点
当前提交
16ecfa1298
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      nginx/templates/config.jinja

+ 1
- 0
nginx/templates/config.jinja 查看文件

@@ -39,6 +39,7 @@ http {
gzip_buffers {{ nginx.get('gzip_buffers', '16 8k') }};
gzip_http_version {{ nginx.get('gzip_http_version', '1.1') }};
gzip_types {{ nginx.get('gzip_types', ['text/plain', 'text/css', 'application/json', 'application/x-javascript', 'text/xml', 'application/xml', 'application/xml+rss', 'text/javascript'])|join(' ') }};
gzip_disable "{{ nginx.get('gzip_disable', 'msie6' }}";

# turn on nginx_status on localhost
server {

正在加载...
取消
保存