A simple HTTP file server with PUT, GET and DELETE methods.
DIRECTORY
– directory path to write to and read files from DIRECTORY=content
SERVER_ADDR
– server socket address SERVER_ADDR=0.0.0.0:8000
Start
$ cargo run
Create (upload)
$ curl localhost:8000 --data-binary @<file_path>
3718021f-1c23-4dcb-9a90-6d1a74709744
Read (download)
$ curl localhost:8000/3718021f-1c23-4dcb-9a90-6d1a74709744
<file>
Update (overwrite)
$ curl localhost:8000/3718021f-1c23-4dcb-9a90-6d1a74709744 -X put --data-binary @<file_path>
Delete
$ curl localhost:8000/3718021f-1c23-4dcb-9a90-6d1a74709744 -X delete
$ docker run -p 8000:8000 rasmusmerzin/crud-file-server
$ cargo install crud-file-server