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

nginx 安全笔记 (修改nginx的header信息和错误显示版本号)

时间:2017-06-12 14:41:09      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:nginx 安全 优化

随笔记载,欢迎指正:

修改nginx的header信息和错误显示版本号

1.隐藏版本号:

nginx的配置文件nginx.conf找到http栏目加入:

server_tokens off;

2.修改显示nginx的名称

需要修改源码文件:

/opt/soft/nginx-1.2.0/src/http/ngx_http_special_response.c

vi /opt/soft/nginx-1.2.0/src/http/ngx_http_special_response.c

找到29行:

 29 "<hr><center>LLSERVER</center>" CRLF ##修改成需要的名称

 

 /opt/soft/nginx-1.2.0/src/http/ngx_http_header_filter_module.c 

 vi /opt/soft/nginx-1.2.0/src/http/ngx_http_header_filter_module.c 

 找到49和50行:

 static char ngx_http_server_string[] = "Server: LLSERVER" CRLF;

 static char ngx_http_server_full_string[] = "Server: LLSERVER " NGINX_VER CRLF;

 修改成相应的名称即可

 

 再次访问的时候:

 404 Not Found


    LLSERVER


本文出自 “nginx安装优化” 博客,请务必保留此出处http://mrdeng.blog.51cto.com/3736360/1934389

nginx 安全笔记 (修改nginx的header信息和错误显示版本号)

标签:nginx 安全 优化

原文地址:http://mrdeng.blog.51cto.com/3736360/1934389

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