This commit is contained in:
2020-04-22 12:57:02 +02:00
commit 81c4b923b5
26 changed files with 734 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# /etc/httpd/conf.d/status.conf
<IfDefine ENABLE_STATUS_ENDPOINTS>
<Location /.status>
SetHandler server-status
Require all granted
</Location>
<Location /.info>
SetHandler server-info
Require all granted
</Location>
</IfDefine>