网站安全加固

让nginx在CentOS下以chroot的方式运行

僤鯓⒐⒋嵵緔 提交于 2020-04-22 08:30:45
实验环境为64位的CentOS6.4,nginx使用官方最新稳定版的, 下载源码包 # wget http://nginx.org/download/nginx-1.6.2.tar.gz [root@2core local]# tar zxvf nginx-1.6.2.tar.gz 隐藏nginx的真实版本,修改nginx显示版本及名称, [root@2core nginx-1.6.2]# vi /usr/local/nginx-1.6.2/src/core/nginx.h #define NGINX_VERSION "1.6.2" /*版本号,自己改*/ #define NGINX_VER "Your string here" /*显示版本时直接显示此字符串*/ 增加用户 #groupadd nginx #useradd -g nginx nginx [root@2core nginx-1.6.2]# cd /usr/local/nginx-1.6.2 [root@2core nginx-1.6.2]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_gzip_static_module --http-log-path=/var/log/nginx/access.log