Browse Source

add docs about running up a simple WebDAV server..

tags/ggatessh-v1.0.0
John-Mark Gurney 3 years ago
parent
commit
acb98a9b09
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      NOTES.md

+ 15
- 0
NOTES.md View File

@@ -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
```

Loading…
Cancel
Save