随笔记载,欢迎指正:
网站建设哪家好,找成都创新互联公司!专注于网页设计、网站建设、微信开发、微信小程序开发、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了罗定免费建站欢迎大家使用!
修改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 "
/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