wordpress/wordpress-httpd-conf
Remi Collet b25e97572f - fix use of system Simplepie
- give access from local (httpd 2.4)
2012-12-16 20:02:23 +01:00

16 lines
332 B
Text

Alias /wordpress /usr/share/wordpress
<Directory /usr/share/wordpress>
AllowOverride Options
<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>