mirror of
https://github.com/YunoHost-Apps/baikal_ynh.git
synced 2024-09-03 18:16:11 +02:00
16 lines
371 B
Text
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>
|