3604e3bd72
access_compat_module, catch up example configuration file, too.
22 lines
624 B
Text
22 lines
624 B
Text
# $NetBSD: contao.conf,v 1.2 2013/06/27 16:10:18 taca Exp $
|
|
|
|
#
|
|
# If you set DocumentRoot to "@PREFIX@/@CT_WEBDIR@",
|
|
# Set DocuemntRoot of Apache to it.
|
|
# If you want to access contao via sub directory, uncomment
|
|
# below line. (http://www.example.org/subdir/)
|
|
#
|
|
#Alias /subdir "@PREFIX@/@CT_WEBDIR@"
|
|
|
|
<Directory "@PREFIX@/@CT_WEBDIR@">
|
|
DirectoryIndex index.php index.html
|
|
Options Indexes SymLinksIfOwnerMatch FollowSymLinks
|
|
AllowOverride All
|
|
<IfModule !mod_authz_core.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
<IfModule mod_authz_core.c>
|
|
Require all granted
|
|
</IfModule>
|
|
</Directory>
|