Nginx 升级版本或者重新编译增加参数
这里我们重新编译下,增加nginx用户和组
先创建用户
#useradd nginx
开始编译
#cd /usr/local/nginx-1.6.1
#./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module --http-proxy-temp-path=/var/tmp/nginx/proxy/ --http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ --with-pcre
先make不要make install
#make
先备份下
#mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old
#cp objs/nginx /usr/local/nginx/sbin/nginx
测试下Ok,继续
#/usr/local/nginx/sbin/nginx -t
开始升级
#make upgrade
完成后看下编译参数,已经增加nginx用户了
隐藏nginx版本信息,默认我是可以看到的
只需要在配置文件中加入server_tokens off 就可以了,重启下我们在看看
现在我们在看下,已经没有版本信息了
本文出自 “改变从现在开始” 博客,请务必保留此出处http://peaceweb.blog.51cto.com/3226037/1545058
原文地址:http://peaceweb.blog.51cto.com/3226037/1545058