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
- Host: GitHub
- URL: https://github.com/tmaize/webdav
- Owner: TMaize
- Created: 2023-09-21T14:35:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-21T09:40:17.000Z (over 2 years ago)
- Last Synced: 2025-01-14T20:25:03.363Z (over 1 year ago)
- Topics: binary, docker, webdav
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```