aboutsummaryrefslogtreecommitdiff
path: root/resources/baikal.apache2
diff options
context:
space:
mode:
Diffstat (limited to 'resources/baikal.apache2')
-rw-r--r--resources/baikal.apache222
1 files changed, 22 insertions, 0 deletions
diff --git a/resources/baikal.apache2 b/resources/baikal.apache2
new file mode 100644
index 0000000..6572b1f
--- /dev/null
+++ b/resources/baikal.apache2
@@ -0,0 +1,22 @@
+ServerName calendar.example.org
+
+<VirtualHost *:80>
+ DocumentRoot /var/www/html/html
+ ServerName calendar.example.org
+
+ RewriteEngine On
+ RewriteRule /.well-known/carddav /dav.php [R,L]
+ RewriteRule /.well-known/caldav /dav.php [R,L]
+
+ <Directory "/var/www/html/html">
+ Options None
+ Options +FollowSymlinks
+ AllowOverride All
+
+ Require all granted
+ </Directory>
+
+</VirtualHost>
+
+# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
+