mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 16:28:00 +08:00
011855bf8a
CardDav support. New skin (Blurred). Login animation. Small fixes.
14 lines
No EOL
330 B
Text
14 lines
No EOL
330 B
Text
<VirtualHost *:80>
|
|
AcceptPathInfo On
|
|
ServerName dav.mydomain.com
|
|
DocumentRoot /var/www/mydomain.com
|
|
|
|
RewriteEngine On
|
|
RewriteRule /.well-known/carddav /index.php/dav [R,L]
|
|
|
|
<Directory "/var/www/mydomain.com">
|
|
Options None
|
|
Options +FollowSymlinks
|
|
AllowOverride All
|
|
</Directory>
|
|
</VirtualHost> |