This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
ggate
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
2
Wiki
Activity
Browse Source
add docs about running up a simple WebDAV server..
tags/ggatessh-v1.0.0
John-Mark Gurney
4 years ago
parent
7d19a61c4f
commit
acb98a9b09
1 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
```
Write
Preview
Loading…
Cancel
Save