12 lines
277 B
Plaintext
12 lines
277 B
Plaintext
# /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>
|