14 lines
570 B
Text
14 lines
570 B
Text
|
# this file is part of the CryptoBox
|
||
|
# put it into /etc/apache2/conf.d/
|
||
|
# you MUST create the directory given below - otherwise apache will not like it :(
|
||
|
# do not forget to chown the directory to the cryptobox user
|
||
|
|
||
|
<IfModule mod_dav_fs.c>
|
||
|
# include the dynamically managed configuration directory - IT MUST EXIST
|
||
|
Include /var/cache/cryptobox-server/settings/misc/apache2_dav.conf.d/
|
||
|
# lock database - should be writeable for www-data
|
||
|
DavLockDB /tmp/dav_lock.db
|
||
|
# a longer value than the default (120) help for high-latency networks
|
||
|
DavMinTimeout 600
|
||
|
</IfModule>
|