aboutsummaryrefslogtreecommitdiff
path: root/resources/baikal.apache2
blob: 6572b1f7df033c7533ffc2d3c16e68aa8ce3f91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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