Nginx隱藏版本號

餘二五發表於2017-11-15
Nginx隱藏版本號
1、在nginx虛擬機器主機配置檔案中的server模組中增加一行server_tokens指令,指定關閉(off)顯示版本號
server {
    listen      80;
    server_name 192.168.1.250;
    index index.html index.htm index.php index.jsp;
    server_tokens       off;
    root        /data/www/html;
    access_log  /var/log/nginx/wordpress.access.log combined_realip;
2、重啟或重新載入Nginx伺服器,測試訪問
本文轉自 meteor_hy 51CTO部落格,原文連結:http://blog.51cto.com/zuoshou/1744019,如需轉載請自行聯絡原作者


相關文章