1. 程式人生 > >nginx 隱藏版本號與WEB伺服器資訊

nginx 隱藏版本號與WEB伺服器資訊

nginx不僅可以隱藏版本資訊,還支援自定義web伺服器資訊

先看看最終的隱藏結果吧

具體怎麼實現呢,其實也很簡單,請往下看

1 官網下載最新穩定版

wget  http://nginx.org/download/nginx-1.14.1.tar.gz

2 解壓

tar -xf nginx-1.14.1.tar.gz
cd nginx-1.14.1

3 修改C檔案
(1)vim src/http/ngx_http_header_filter_module.c               #修改49行
static u_char ngx_http_server_string[] = "Server: Please guess it!

" CRLF;    #Server後寫上你自定義的伺服器資訊

(2)vim src/http/ngx_http_special_response.c      #修改36行
"<hr><center>Please guess it!</center>" CRLF    #再寫一遍剛才的字串

4 編譯配置

./configure --prefix=/usr/local/nginx

5 編譯安裝

make && make install

6 修改nginx配置檔案,http節點下新增 server_tokens off
vim /usr/local/nginx/conf/nginx.conf
....
http {
server_tokens off;
.....

 7 啟動nginx

/usr/local/nginx/sbin/nginx

8 測試

[[email protected] nginx-1.14.1]# curl -I http://127.0.0.1
    HTTP/1.1 200 OK
    Server: Please guess it!
    Date: Wed, 07 Nov 2018 19:15:43 GMT
  ......

瀏覽器訪問測試

  

說明:(1)要是隻想隱藏版本號,而不想自定義伺服器資訊,不需要執行第3步.
     (2)要是對nginx升級同時還要做字串自定義,也是沒有問題的,可以先修改C檔案-->./configure --> make 即可