Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2.4/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fi
# has been bind mounted in by the user.
if [ -e /privkey.pem ] && [ -e /cert.pem ]; then
# Enable SSL Apache modules.
for i in http2 ssl; do
for i in http2 ssl socache_shmcb; do
sed -e "/^#LoadModule ${i}_module.*/s/^#//" \
-i "$HTTPD_PREFIX/conf/httpd.conf"
done
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ When using unencrypted HTTP, use `Digest` authentication (instead of `Basic`) to
To make sure your data doesn't get deleted, you'll probably want to create a persistent storage volume (`-v vol-webdav:/var/lib/dav`) or bind mount a directory (`-v /path/to/directory:/var/lib/dav`):

```
docker run --restart always -v /srv/dav:/var/lib/dav \
docker run --restart always -v /srv/dav:/var/lib/dav/data \
-e AUTH_TYPE=Digest -e USERNAME=alice -e PASSWORD=secret1234 \
--publish 80:80 -d bytemark/webdav

Expand All @@ -49,7 +49,7 @@ services:
USERNAME: alice
PASSWORD: secret1234
volumes:
- /srv/dav:/var/lib/dav
- /srv/dav:/var/lib/dav/data

```
### Secure WebDAV with SSL
Expand Down