FileRise includes a built-in WebDAV endpoint (/webdav.php) that honors the same ACLs as the web UI.
Linux (GIO / Nautilus)
gio mount dav://your-username@your-server/webdav.php/Some distros require gvfs-backends.
macOS (Finder)
- Finder → Go → Connect to Server
- Enter:
dav://your-username@your-server/webdav.php/Windows (File Explorer)
- File Explorer → This PC → Map Network Drive
- Folder:
https://your-server/webdav.php/- Check "Connect using different credentials"
Windows HTTP note
Windows requires HTTPS by default. To allow HTTP, change the BasicAuthLevel registry setting:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\ParametersSet BasicAuthLevel to 2, then restart the WebClient service.
Notes
- If FileRise is hosted under a subpath (e.g.
/files), use:https://your-server/files/webdav.php/
- Folder-only users are scoped to their folder in WebDAV.
- WebDAV uploads can be capped with
FR_WEBDAV_MAX_UPLOAD_BYTES.
rclone example
rclone mount \
:webdav:/uploads \
--webdav-url=https://your-server/webdav.php \
--webdav-user=username \
--webdav-pass=passwordSee also: WebDAV via curl)