From acb98a9b09a4979bb6942568ecb4fcdd65c45405 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Fri, 9 Oct 2020 23:51:56 +0000 Subject: [PATCH] add docs about running up a simple WebDAV server.. --- NOTES.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NOTES.md diff --git a/NOTES.md b/NOTES.md new file mode 100644 index 0000000..9c92c56 --- /dev/null +++ b/NOTES.md @@ -0,0 +1,15 @@ +Testing +======= + +Any WebDAV server should be fine. Any easy one to use is the wsgidav +Python server. + +Simple setup: +``` +$ virtualenv-3.7 p +$ . ./p/bin/activate +$ pip install wsgidav cheroot +$ mkdir data +$ truncate -s 1G data/somefile +$ wsgidav --auth anonymous --host=0.0.0.0 --port=5555 --root=data +```