隱藏nginx版本號php
第一步:nginx
編輯 /usr/local/nginx/conf/nginx.confide
在http{}中加入spa
server_tokens off;server
第二歩:token
vi /usr/local/nginx/conf/fastcgi_paramsit
將裏面的io
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;編譯
修改成:ast
fastcgi_param SERVER_SOFTWARE nginx;
隱藏php版本號
編輯 php.ini
找到:
expose_php = On;
修改成:
expose_php = Off;
重啓!
假裝nginx
編輯 /src/core/nginx.h
修改其中:
#define NGINX_VERSION "1.0"
#define NGINX_VER "GWS/" NGINX_VERSION
從新編譯nginx;