美文网首页
隐藏nginx的版本号

隐藏nginx的版本号

作者: IT行者q | 来源:发表于2020-08-06 14:28 被阅读0次

    1.打开conf/nginx.conf配置文件;
    2.在http下配置server_tokens项;

    http {
        server_tokens off;
    }
    
    

    3.隐藏X-Powered-By:PHP/7.3.0

    在nginx配置文件添加:fastcgi_hide_header X-Powered-By;
    在php.ini文件关闭expose_php = On改成expose_php = Off
    

    相关文章

      网友评论

          本文标题:隐藏nginx的版本号

          本文链接:https://www.haomeiwen.com/subject/xdlscktx.html