知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

让Nginx关闭版本显示信息

发布时间:2014-09-05 14:39:41作者:知识屋

让Nginx关闭版本显示信息
 
Nginx 会在 http 头,或者出现错误页的时候会有醒目的版本号提示。
为了安全,可以关闭这些信息。
方法很简单,只需在 nginx.conf 的 http {  里头加入 server_tokens 的参数
例如:
[plain] 
http {  
include       mime.types;  
default_type  application/octet-stream;  
server_tokens off;     #关闭版本显示  
client_header_timeout       3m;  
client_body_timeout         3m;  
send_timeout                3m;  
 
使用 curl 工具测试结果如下:
[html] 
HTTP/1.1 301 Moved Permanently  
Server: nginx  
Date: Fri, 11 Dec 2009 01:47:53 GMT  
Content-Type: text/html  
Content-Length: 178  
Connection: keep-alive  
Keep-Alive: timeout=20  
Location: http://www.***.cn/index 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜