A WebDAV server (wsgidav) behind an NGINX instance, secured by client-side certificates.
223
A WebDAV server (wsgidav) behind an NGINX instance, secured by client-side certificates.
The nginx instance is configured to request SSL client certificates, and uses the certificate to identify the user and serve a separate directory for them. The username is expected to be the Subject of the certificate. The WebDAV server expects a directory for each user to exist under the root data directory. For instance, if client certificates for "john" and "josh" have been issued, the following is how the data directory is expected to look:
version: "3"
services:
nginx-webdav:
image: alexta69/nginx-webdav
container_name: nginx-webdav
restart: unless-stopped
ports:
- "443:443"
volumes:
- /path/to/data:/data
- /path/to/ssl:/ssl
Content type
Image
Digest
Size
24.9 MB
Last updated
over 6 years ago
docker pull alexta69/nginx-webdav