Apache配置status

查看配置文件,是否加载此项

LoadModule status_module modules/mod_status.so

如有,下一步,如无此项需重新编译Apache,注释的取消注释。

并在所有虚拟主机之后加入下列配置

ExtendedStatus On

<Location /server-status>    名称,此处即http://ip/server-status即可访问

  SetHandler server-status

  Order deny,allow

  Deny from all

  Allow from 172.16.1.1

</Location>

ExtendedStatus On

<Location /monitoring> #路径,如danteng.org,此处地址为http://domain.com/monitoring

SetHandler server-status

Order Deny,Allow

Deny from all

Allow from 1.2.3.4 #允许访问的IP

</Location>

本文链接地址: https://danteng.org/apache-status-configure/