KazV2/dockers/paheko/config/paheko.conf

27 lines
536 B
Plaintext
Raw Normal View History

2024-06-03 18:43:35 +02:00
<VirtualHost *:80>
#ServerName paheko.kaz.bzh
2024-10-09 15:20:40 +02:00
DocumentRoot /var/www/paheko
2024-06-03 18:43:35 +02:00
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
ServerSignature Off
2024-10-09 15:23:09 +02:00
<Directory /var/www/paheko >
2024-06-03 18:43:35 +02:00
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>