You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
343 B
17 lines
343 B
6 years ago
|
# 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>
|