]> git.pld-linux.org Git - packages/php-pecl-memcache.git/blob - memcache-apache.conf
apache 1.3-2.4 comptible config
[packages/php-pecl-memcache.git] / memcache-apache.conf
1 Alias /memcache.php /usr/share/memcache/memcache.php
2
3 <Directory /usr/share/memcache>
4         # Allow from localhost only.
5         # IMPORTANT: if you allow from elsewhere, be sure to change admin
6         # username/password in config.php otherwise you make your page password easily
7         # guessable.
8
9         # Apache < 2.4
10         <IfModule !mod_authz_core.c>
11                 Allow from 127.0.0.1
12         </IfModule>
13         # Apache 2.4
14         <IfModule mod_authz_core.c>
15                 Require local
16         </IfModule>
17 </Directory>
This page took 0.031613 seconds and 4 git commands to generate.