nginx 隐藏版本信息
Posted ReyCG 的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 隐藏版本信息相关的知识,希望对你有一定的参考价值。
1. 编辑 nginx.conf 文件
http { include mime.types; default_type application/octet-stream; server_tokens off; #隐藏软件版本信息 ...
server_token 作用是控制 http response header 内的 web 服务版本信息的显示,以及错误信息中 Web 服务版本信息的显示。
默认情况下,该参数为 server_token on;
2. 测试,重载 nginx
[root@localhost sbin]# ./nginx -t nginx: the configuration file /opt/nginx/conf/nginx.conf syntax is ok nginx: configuration file /opt/nginx/conf/nginx.conf test is successful [root@localhost sbin]# ./nginx -s reload
3. 查看结果
以上是关于nginx 隐藏版本信息的主要内容,如果未能解决你的问题,请参考以下文章
Nginx优化之基本安全优化(隐藏Nginx软件版本号信息,更改源码隐藏Nginx软件名及版本号,更改Nginx服务的默认用户)