An open API service indexing awesome lists of open source software.

https://github.com/tmaize/webdav

simple webdav server with auth
https://github.com/tmaize/webdav

binary docker webdav

Last synced: about 2 months ago
JSON representation

simple webdav server with auth

Awesome Lists containing this project

README

          

# webdav

simple webdav server with auth

## Usage

config.yml

```yml
port: 80
accounts:
- user: 'demo'
password: '123456789'
dir: ./data
```

run with binary

```
webdav -c config.yml
```

run with [docker](https://registry.hub.docker.com/r/tmaize/webdav/tags)

```
docker run tmaize/webdav:x.x.x -p 80:80 -v config.yml:/app/config.yml
```