隐藏或修改nginx返回的Server信息(以及隐藏版本号)

Posted 21karat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏或修改nginx返回的Server信息(以及隐藏版本号)相关的知识,希望对你有一定的参考价值。

如何隐藏nginx版本号:

[root@localhost /]# vi /etc/nginx/nginx.conf
[root@localhost /]# nginx -t
[root@localhost /]# nginx -s reload

配置文件中,http区段中插入“server_tokens  off;”,重新载入配置文件

worker_processes  1;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    server_tokens  off;
    expires         5s;
    sendfile        on;

隐藏或修改nginx返回的Server信息:

[root@localhost /]# vi /opt/nginx/nginx-1.2.0/src/http/ngx_http_special_response.c 
找到29行:修改展示名称(LLSERVER)
[root@localhost /]# "<hr><center>LLSERVER</center>" CRLF
[root@localhost /]# cd
/opt/nginx/nginx-1.2.0/src/http/ngx_http_header_filter_module.c
[root@localhost /]# vi
/opt/nginx/nginx-1.2.0/src/http/ngx_http_header_filter_module.c
找到49和50行: 修改展示名称(Server: LLSERVER)
[root@localhost /]# static char ngx_http_server_string[] = "Server: LLSERVER" CRLF;
[root@localhost /]# static char ngx_http_server_full_string[] = "Server: LLSERVER " NGINX_VER CRLF;

 

以上是关于隐藏或修改nginx返回的Server信息(以及隐藏版本号)的主要内容,如果未能解决你的问题,请参考以下文章

修改或隐藏Nginx的版本号

隐藏 HTTP 响应头中 Server 和 X-Power-By 信息

nginx 隐藏版本信息

Nginx基本安全优化

nginx隐藏server信息和版本信息

Nginx服务优化之隐藏版本号修改用户与组配置页面缓存与时间日志分割以及设置连接超时