首页 > Web > nginx > 正文

Nginx关闭版本显示信息的方法
2014-02-21 16:29:13 点击:

Nginx 会在 http 头,或者出现错误页的时候会有醒目的版本号提示,为了安全,一般要关闭这些信息。方法很简单,只需在 nginx.conf 的...
Nginx 会在 http 头,或者出现错误页的时候会有醒目的版本号提示,为了安全,一般要关闭这些信息。


方法很简单,只需在 nginx.conf 的 http {  里头加入 server_tokens 的参数
例如:
 
  1. http {  
  2. include       mime.types;  
  3. default_type  application/octet-stream;  
  4. server_tokens off;     #关闭版本显示  
  5. client_header_timeout       3m;  
  6. client_body_timeout         3m;  
  7. send_timeout                3m; 

如果想把 Server 所显示的名称也修改,可以参阅:http://www.oschina.net/bbs/thread/1568?lp=1


相关热词搜索:Nginx 关闭 版本

上一篇:nginx负载均衡器处理session共享的几种方法
下一篇:Nginx 微调:性能优化指南