1. 程式人生 > >nginx 隱藏版本信息

nginx 隱藏版本信息

默認 錯誤 ges oot serve off span mage stream

1. 編輯 nginx.conf 文件

http {

    include       mime.types;
    default_type  application/octet-stream;
    server_tokens off; #隱藏軟件版本信息
...

server_token 作用是控制 http response header 內的 web 服務版本信息的顯示,以及錯誤信息中 Web 服務版本信息的顯示。

默認情況下,該參數為 server_token on;

2. 測試,重載 nginx

[root@localhost sbin]# ./nginx -t
nginx: the configuration 
file /opt/nginx/conf/nginx.conf syntax is ok nginx: configuration file /opt/nginx/conf/nginx.conf test is successful [root@localhost sbin]# ./nginx -s reload

3. 查看結果

技術分享圖片

nginx 隱藏版本信息