windows下怎样修改nginx的编译参数呢
因为现在已经在运行了,但我现在想启动gzip,搜索发现需要写编译参数–without-http_gzip_module,但我不知道在哪里改这个,请高手指点一下啊。我是wi...
因为现在已经在运行了,但我现在想启动gzip,搜索发现需要写编译参数–without-http_gzip_module,但我不知道在哪里改这个,请高手指点一下啊。
我是windows + nginx 1.0.4 + mysql , 谢谢
我找到这个设置NGINX 下启动Gzip的步骤:
1.nginx编译选项
./configure --with-http_gzip_static_module
2.修改nginx.conf
gzip_static on;
gzip_http_version 1.1;
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6] \.";
gzip_vary on;
我查也with-http_gzip_static_module已经有配置好,conf我也改好了,也重启了nginx,但网页GZIP检测,还是说没有启用gzip... 展开
我是windows + nginx 1.0.4 + mysql , 谢谢
我找到这个设置NGINX 下启动Gzip的步骤:
1.nginx编译选项
./configure --with-http_gzip_static_module
2.修改nginx.conf
gzip_static on;
gzip_http_version 1.1;
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6] \.";
gzip_vary on;
我查也with-http_gzip_static_module已经有配置好,conf我也改好了,也重启了nginx,但网页GZIP检测,还是说没有启用gzip... 展开
2个回答
展开全部
#开启gzip
gzip on;
gzip_min_length 1100;
gzip_buffers 4 8k;
gzip_types text/plain;
output_buffers 1 32k;
postpone_output 1460;
sendfile on;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
在中间加一段语句`
gzip on;
gzip_min_length 1100;
gzip_buffers 4 8k;
gzip_types text/plain;
output_buffers 1 32k;
postpone_output 1460;
sendfile on;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
在中间加一段语句`
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询