diff options
| author | Philipp Le <philipp-le-prviat@freenet.de> | 2021-02-21 01:52:03 +0100 |
|---|---|---|
| committer | Philipp Le <philipp-le-prviat@freenet.de> | 2021-02-21 01:54:53 +0100 |
| commit | c922797429e6c078a2c659a6a79284e498244533 (patch) | |
| tree | 6a3788eeb4049a1d315c092d71b4dfe155a2903a /resources | |
| parent | b67c617476b0e20973f1fa2001709bc53592da83 (diff) | |
| download | baikal-docker-c922797429e6c078a2c659a6a79284e498244533.zip baikal-docker-c922797429e6c078a2c659a6a79284e498244533.tar.gz baikal-docker-c922797429e6c078a2c659a6a79284e498244533.tar.bz2 | |
fix: Build image on our own from Debian 9
Some packages were missing in the older approach. So we have set up the
image from a plain Debian 9 Slim image and installed PHP7 and all
required packages on owr own.
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/baikal.apache2 | 22 |
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 + |
