27 lines
548 B
Plaintext
27 lines
548 B
Plaintext
<VirtualHost *:80>
|
|
#ServerName paheko.kaz.bzh
|
|
DocumentRoot /usr/share/paheko/www
|
|
ErrorLog /var/log/apache2/error.log
|
|
CustomLog /var/log/apache2/access.log combined
|
|
ServerSignature Off
|
|
|
|
<Directory /usr/share/paheko/www >
|
|
AllowOverride All
|
|
Require all granted
|
|
Options FollowSymLinks MultiViews
|
|
<IfModule mod_dav.c>
|
|
Dav off
|
|
</IfModule>
|
|
</Directory>
|
|
|
|
<FilesMatch "^\.ht.*">
|
|
deny from all
|
|
satisfy all
|
|
ErrorDocument 403 "Access denied."
|
|
</FilesMatch>
|
|
|
|
FallbackResource /_route.php
|
|
|
|
|
|
</VirtualHost>
|