summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 9bab72f..52b9f59 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,9 @@
This image runs an easily configurable WebDAV server with Apache.
+You can configure the authentication type, the authentication of multiple
+users, or to run with a self-signed SSL certificate.
+
* **Code repository:**
https://github.com/BytemarkHosting/docker-webdav
* **Where to file issues:**
@@ -19,7 +22,8 @@ This image runs an easily configurable WebDAV server with Apache.
### Basic WebDAV server
-This example starts a WebDAV server.
+This example starts a WebDAV server on port 80. It can only be accessed by
+a single username and password.
When using unencrypted HTTP, use `Digest` authentication (instead of `Basic`)
to avoid sending plaintext passwords in the clear.
@@ -67,6 +71,9 @@ docker run --restart always -v /srv/dav:/var/lib/dav \
```
+If you bind mount a certificate chain to `/cert.pem` and a private key to
+`/privkey.pem`, the container will use that instead!
+
### Authenticate multiple clients
Specifying `USERNAME` and `PASSWORD` only supports a single user. If you want