summaryrefslogtreecommitdiffstats
path: root/xcache-httpd.conf
blob: 388381bac66a15710e2b6e406f38ce9de38965f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Configure XCache Administration
Alias /xcache /usr/share/xcache

<Directory /usr/share/xcache>
   <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>