隐藏Apache的版本号及其它敏感信息

1.   编辑apache的配置文件

[root@on0926 conf]# vim /etc/httpd/conf/httpd.conf
  1. 找到ServerTokens Full 以及ServerSignature On

修改成ServerTokens Prod

``     \ ``ServerSignature off

然后保存

3.重启apache

[root@on0926 conf]# service httpd restart

    Stopping httpd:                                            [  OK  ]

    Starting httpd:                                            [  OK  ]

    [root@on0926 …
点击查看更多…

apache prefork 模块指令分析

apache prefork 模块指令

什么是MPM?

既然是研究prefork模块,有必要提一提apache的多路处理模块(MPM)的基础知识。Apache2.0拥有多个模式的多路处理模块 (MPM)以处理网络端口绑定、接受请求并指派子进 …

点击查看更多…

Apache 配置KeepAlive

先说http请求的过程

阻挡->域名解析->建立连接->发送请求->等待响应->接收数据。当然不是每个请求都要包含所有过程

那么http请求和tcp请求是什么关系呢?简单点说就是 …

点击查看更多…