在Nginx設定中停用server_tokens項目
server_tokens在開啟的情況下會使404頁面顯示Nginx的目前版本號。這樣做顯然不安全,因為駭客會利用這些資訊嘗試對應Nginx版本的漏洞。
只需要在nginx.conf中http模組設定server_tokens off即可,例如:
server { listen 192.168.0.25:80; Server_tokens off; server_name tecmintlovesnginx.com www.tecmintlovesnginx.com; access_log /var/www/logs/tecmintlovesnginx.access.log; error_log /var/www/logs/tecmintlovesnginx.error.log error; root /var/www/tecmintlovesnginx.com/public_html; index index.html index.htm; }
重啟Nginx後生效
以上是如何在Nginx配置中停用server_tokens項的詳細內容。更多資訊請關注PHP中文網其他相關文章!