Skip to content

TMaize/webdav

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webdav

simple webdav server with auth

Usage

config.yml

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

run with binary

webdav -c config.yml

run with docker

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