Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-11-20 23:25:49 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-20 23:25:49 +0300
commit634c13700ef4d79d398fe110dda932fceca88356 (patch)
tree8791f3ff409196571bfd936127549cabe2876cb8 /webdav-apache-php7.3
parente850b5ae7d8151870dd3a72e0cbf12967da6b69e (diff)
Add webdav.confwebdav-apache-php7.3-2
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'webdav-apache-php7.3')
-rw-r--r--webdav-apache-php7.3/webdav.conf15
1 files changed, 15 insertions, 0 deletions
diff --git a/webdav-apache-php7.3/webdav.conf b/webdav-apache-php7.3/webdav.conf
new file mode 100644
index 0000000..05929f3
--- /dev/null
+++ b/webdav-apache-php7.3/webdav.conf
@@ -0,0 +1,15 @@
+Alias /webdav /var/webdav/
+<Location /webdav/>
+ DAV on
+ Options +Indexes
+ AuthType Basic
+ AuthName "webdav"
+ AuthUserFile /etc/apache2/webdav.password
+ Require valid-user
+</Location>
+
+<Directory /var/webdav/>
+ Options Indexes FollowSymLinks
+ AllowOverride None
+ Require all granted
+</Directory>