| Access mode | public reads, authenticated writes |
|---|---|
| Base URL | https://filesystem-pt5.sprites.app/ |
Finder: Go → Connect to Server → https://filesystem-pt5.sprites.app/
# Mount (davfs2) sudo apt install davfs2 sudo mkdir /mnt/webdav sudo mount -t davfs https://filesystem-pt5.sprites.app/ /mnt/webdav # GUI: Nautilus address bar → davs://filesystem-pt5.sprites.app/ # GUI: Dolphin address bar → webdavs://filesystem-pt5.sprites.app/ # CLI cadaver https://filesystem-pt5.sprites.app/
Map Network Drive → Folder: https://filesystem-pt5.sprites.app/
Or: net use Z: https://filesystem-pt5.sprites.app/
If Windows refuses to connect: set
HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\BasicAuthLevel = 2
and restart the WebClient service.
rclone copy https://filesystem-pt5.sprites.app/ ./local-copy --webdav-vendor other
Cyberduck and WinSCP also support WebDAV via GUI.
# List directory curl -X PROPFIND -H "Depth: 1" https://filesystem-pt5.sprites.app/ # Download a file curl https://filesystem-pt5.sprites.app/path/to/file # Upload (requires auth if credentials are configured) curl -T localfile https://filesystem-pt5.sprites.app/path/to/file # Create a directory curl -X MKCOL https://filesystem-pt5.sprites.app/newdir/
Download webdav.py — self-contained, PEP 723, runs with uv run webdav.py.
GET HEAD PUT DELETE MKCOL COPY MOVE PROPFIND PROPPATCH LOCK UNLOCK OPTIONS
RFC 4918 WebDAV — DAV compliance classes 1, 2, 3.