1、隐藏 Nginx 版本信息
进入 Nginx 配置文件的目录,默认在 /etc/nginx/
目录下,用 vi
编辑打开
[root@hexingxing nginx]# vi nginx.conf
在 http {...} 里添加 server_tokens off; 字段,如:
http {
...
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
server_tokens off;
...
}
重启 Nginx 服务即可生效
[root@hexingxing nginx]# service nginx restart
2、隐藏 PHP 版本信息
进入 PHP 配置文件的目录,默认在 /etc/
目录下,用 vi
编辑打开
[root@hexingxing etc]# vi php.ini
在 php.ini 文件里使用 / expose_php
命令搜索到对应字段位置后,将 expose_php = On
改为 expose_php = Off
重启 PHP 服务即可生效
[root@hexingxing etc]# service php-fpm restart
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论