Sign inSign up

xfplabs/webdav

By xfplabs

Updated over 5 years ago

hacdias/webdav v4.0.0

Image
0

1.5K

xfplabs/webdav repository overview

소스

https://github.com/hacdias/webdav

사용법

docker-compose.yml
version: '3'
services:

  webdav:
    image: xfplabs/webdav:latest
    restart: always
    ports:
    - 80:80
    volumes:
    - /data:/data
    - /etc/webdav.yml:/etc/webdav.yml
/etc/webdav.yml
address: 0.0.0.0
port: 8080
auth: true
tls: false
cert: cert.pem
key: key.pem
prefix: /

# Default user settings (will be merged)
scope: .
modify: true
rules: []

# CORS configuration
cors:
  enabled: true
  credentials: true
  allowed_headers:
  - Depth
  allowed_hosts:
  - http://localhost:8080
  allowed_methods:
  - GET
  exposed_headers:
  - Content-Length
  - Content-Range

users:
- username: admin
  password: admin
  scope: /data
- username: basic
  password: basic
  modify:   false
  rules:
  - regex: false
    allow: false
    path: /some/file
  - path: /public/access/
    modify: true

Tag summary

Content type

Image

Digest

Size

9.4 MB

Last updated

over 5 years ago

docker pull xfplabs/webdav