I found a nice python script to setup a quick WebDAV server. Might be very handy! All you need to do is:
pip3 install wsgidav cheroot python-pam
and
wsgidav --auth=anonymous --host=0.0.0.0 --port=8080 --root=.
It is a convenient way to quickly share something using WebDAV!
Check out easy FTP setup as well:
python3 -m pip install python-ftp-server
Then python3 -m python_ftp_server -d “/tmp/” –port 21 -p pass or -h for help