1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/baikal_ynh.git synced 2024-09-03 18:16:11 +02:00
baikal_ynh/sources/Specific/virtualhosts/baikal.apache2

16 lines
371 B
Text

<VirtualHost *:80>
DocumentRoot /var/www/dav.mydomain.com/html
ServerName dav.mydomain.com
RewriteEngine On
RewriteRule /.well-known/carddav /card.php [R,L]
RewriteRule /.well-known/caldav /cal.php [R,L]
<Directory "/var/www/dav.mydomain.com/html">
Options None
Options +FollowSymlinks
AllowOverride All
</Directory>
</VirtualHost>