ceab89f6cd
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
18 lines
344 B
Plaintext
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>
|
|
|