]> git.pld-linux.org Git - packages/php-xcache.git/blob - xcache-apache.conf
- unconditional noarch subpackages
[packages/php-xcache.git] / xcache-apache.conf
1 # allow from localhost
2 #
3 # NOTE: you should set xcache.admin.user and xcache.admin.pass php.ini settings
4 # to access it.
5
6 Alias /xcache /usr/share/xcache
7 <Directory /usr/share/xcache>
8         # Apache 2.x
9         <IfModule !mod_authz_core.c>
10                 Allow from 127.0.0.1
11         </IfModule>
12         # Apache 2.4
13         <IfModule mod_authz_core.c>
14                 Require local
15         </IfModule>
16 </Directory>
This page took 0.055222 seconds and 3 git commands to generate.