Skip to content

SabariVig/static-file-serve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Static Serve

Simple self hosting file server which works with cURL

Run with docker
docker-compose up -d
# Upload
curl -X POST  -F "data=@<filename.ext>" http://localhost:3000

# Download
curl http://localhost:3000/uploads/<filename.ext>

Index