码迷,mamicode.com
首页 > Web开发 > 详细

禁掉Apache web server签名 How to turn off server signature on Apache web server

时间:2018-02-13 10:32:30      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:lin   emc   markdown   直接   防止   comment   sys   rac   title   

有的时候,我们为了从安全角度考虑,防止黑客恶意攻击。我们会隐藏掉server信息,比方,一般我们会发现例如以下信息。
技术分享图片

我用的是centos (fedora, RHEL也一样)

$ sudo vi /etc/httpd/conf/httpd.conf 

其它的系统(ubuntu, Debian)

$ sudo vi /etc/apache2/apache2.conf 

我们能够在这个文件里加入两行信息

ServerSignature Off //隐藏Apache版本号信息
ServerTokens Prod//第一条命令尽管不会在页面上直接显示。但在response的头部还会包括。所以加上此条。

然后再重新启动网络

$ sudo service apache2 restart (Debian, Ubuntu or Linux Mint)
$ sudo service httpd restart (CentOS/RHEL 6)
$ sudo systemctl restart httpd.service (Fedora, CentOS/RHEL 7, Arch Linux) 

就可以解决该问题。

详细參见:
http://ask.xmodulo.com/turn-off-server-signature-apache-web-server.html

shell脚本參见:
http://write.blog.csdn.net/mdeditor#!postId=47006651

禁掉Apache web server签名 How to turn off server signature on Apache web server

标签:lin   emc   markdown   直接   防止   comment   sys   rac   title   

原文地址:https://www.cnblogs.com/llguanli/p/8445961.html

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