码迷,mamicode.com
首页 > 其他好文 > 详细

LAMP安全设置

时间:2015-11-16 17:48:09      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

使用 curl -I www.nginx.org/index.php

或者使用chrome 浏览器开发工具查看

默认response header:

Connection:keep-alive
Content-Type:text/html
Date:Mon, 16 Nov 2015 08:16:17 GMT
Server:nginx/1.8.0
Transfer-Encoding:chunked
X-Powered-By:PHP/5.4.16

修改配置参数:

vim /etc/nginx/nginx.conf
http {
    server_tokens off;
}


vim /etc/php.ini
expose_php = Off


systemctl reload nginx.service
systemctl reload php-fpm.service

修改后header :

Connection:keep-alive
Content-Type:text/html
Date:Mon, 16 Nov 2015 08:22:01 GMT
Server:nginx
Transfer-Encoding:chunked

LAMP安全设置

标签:

原文地址:http://my.oschina.net/zhailibao2010/blog/530983

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!