码迷,mamicode.com
首页 > 其他好文 > 详细

隐藏Nginx版本号

时间:2017-08-15 23:07:04      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:software   www   type   str   加载   tcp   delay   param   timeout   

  • http配置块中 server_tokens off 
  • 后端是php,或者django,还需更改响应配置文件,将$nginx_version变量去掉。
步骤
1、进入 nginx 配置文件的目录(此目录根据安装时决定),用 vim 编辑打开
在 http {—}里加上 server_tokens off; 如:
http {
……省略
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
server_tokens off;
…….省略
}
 
2. 编辑 php-fpm 配置文件,如 fastcgi.conf 或 fcgi.conf(这个配置文件名也可以自定义的,根据具体文件名修改)
 
找到:
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
改为:
fastcgi_param SERVER_SOFTWARE nginx;
 
3、重新加载 nginx 配置:
# /etc/init.d/nginx reload
 
4. 测试
# curl -I www.abc.net
HTTP/1.1 200 OK
Server: nginx
Date: Tue, 13 Jul 2010 14:26:56 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
Vary: Accept-Encoding

 

隐藏Nginx版本号

标签:software   www   type   str   加载   tcp   delay   param   timeout   

原文地址:http://www.cnblogs.com/Aiapple/p/7367925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!