如何修改nginx預設的名稱,可以稍微的偽裝一下,也可以裝x
一般來說修改3個位置,一個是nginx.h、另一個是ngx_http_header_filter_module.c、還有一個ngx_http_special_response.c。
提示:一般修改都是在nginx編譯之前修改,修改完了之後需要重新編譯
程式碼如下:
##scr/core/nginx .conf#define nginx_version "1.4.7"
define nginx_version "1.4.7"
#define nginx_ver "nginx/" nginx_version
##修改為:(其實版本號碼也可以隨意修改)
程式碼如下:
#define nginx_version "1.4.7"
#define nginx_ver "jdws/" nginx_version
#其實修改上面大部分就會生效! ! !
程式碼如下:
/src/http/ngx_http_header_filter_module.c (http responseheader)
static char ngx_http_server_string[] = "server: nginx" crlf;
#修改為:
static char ngx_http_server_string[] = "server: jdws" crlf;
/src/http/ngx_http_special_response.c
static u_char ngx_http_error_tail[] =
"
" crlf
"