如何隱藏nginx版本號


vi /etc/nginx/nginx.conf

配置文件中,http區段中插入“server_tokens  off;”,重新載入配置文件

worker_processes  1;
 
events {
    worker_connections  1024;
}
 
http {
    include       mime.types;
    default_type  application/octet-stream;
    server_tokens  off;
    expires         5s;
    sendfile        on;

重載nginx配置文件

nginx -t
nginx -s reload

 

修改前

修改后

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM