Skip to content

WebDAV Template Configuration

The WebDAV template allows users to mount their WebDAV Storage within JupyterLab.

JupyterLab DataMount uses rclone to mount WebDAV. Check out their documentation for more details.

Configuration Parameters

To configure a WebDAV mount, the following parameters are required:

  • URL: URL of http host to connect to.
  • Vendor: Name of the WebDAV site/service/software you are using.
  • User: User name.
  • Password: Password.
  • Bearer Token: Bearer token instead of user/pass (e.g. a Macaroon)
WebDAV

Advanced

RClone configuration
The following configuration is used to mount WebDAV with rclone:
webdav.config:
[webdav]
type = webdav
url = _url_
vendor = _vendor_
user = _user_
pass = _password_ # will be obscured during config creation
bearer_token = _bearer_token_ # optional
<br>
Mounted via <br>
```bash
rclone mount --config webdav.config webdav:/ _path_ --vfs-cache-max-size=10G --vfs-read-chunk-size=64M --vfs-cache-mode=writes --allow-other --uid=1000 --gid=100