php-pecl-apcu/apcu-panel.conf
Troy Dawson ceab89f6cd RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/php-pecl-apcu#f810ab17e43b1977f0a1efaba59f3d950ec6b40e
2020-10-20 07:33:38 -07:00

18 lines
344 B
Plaintext

# APC Control Panel
Alias /apcu-panel /usr/share/apcu-panel
<Directory /usr/share/apcu-panel>
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>