nginx隐藏版本信息

nginx修改服务器标识和版本号
回到nginx解压目录,cd /usr/src/nginx-1.14.0/
1、编辑:vim src/core/nginx.h
#define nginx_version 1014000
#define NGINX_VERSION “66666” (版本) -12行
#define NGINX_VER “hello/” NGINX_VERSION (标识) -13行
2、vim src/http/ngx_http_header_filter_module.c
static u_char ngx_http_server_string[] = “Server: hello” CRLF; -49行
3、vim src/http/ngx_http_special_response.c
static u_char ngx_http_error_full_tail[] =


HELLO
” CRLF -22行左右
“” CRLF
“” CRLF
;
重新执行configure 和make 不要使用make isntall
./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module && make
把之前的配置文件备份防止以后使用:mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak
cp objs/nginx /usr/local/nginx/sbin/
重新启动nginx
nginx -s reload
nginx -t
nginx

上一篇:CSV文件格式


下一篇:C#同一个程序,一个窗口控制另一窗口的控件