WebDAV & rclone: Mount Your LifetimeCloud Vault Like a Local Drive
Stop dragging files into a browser tab one at a time. Mount your encrypted LifetimeCloud vault as a regular folder on macOS, Windows, and Linux — using WebDAV or rclone. Once it's set up, your cloud just looks like another disk.
Why mounting beats drag-and-drop
The browser upload interface is fine for occasional files. For real work — a Documents folder, a photo library, daily backups — it falls apart. You can't open files directly. You can't use your normal Save dialog. You can't sync a directory automatically.
A mounted drive solves all of that. Save a Word document straight into the cloud. Run rsync against it. Point your camera roll at it. The encryption still happens client-side; only the access pattern changes.
macOS — Finder Connect to Server
This is the fastest path on Mac and requires nothing extra to install.
- In Finder, press
Cmd + K(or pick Go → Connect to Server). - Enter the WebDAV URL:
https://lifetimecloud.me/dav/<your-username>/ - Click Connect. Enter your LifetimeCloud username and password.
- The vault appears in Finder's sidebar as a network drive.
Tip: drag the mounted drive into your Login Items so it auto-mounts at startup.
Windows — Map Network Drive
Windows ships with WebDAV support, though the UI is well hidden.
- Open File Explorer → right-click This PC → Map network drive.
- Pick a drive letter (Z: works).
- Folder:
https://lifetimecloud.me/dav/<your-username>/ - Check Reconnect at sign-in. Click Finish.
- Enter your credentials when prompted.
If Windows complains about the file size limit, raise it once via:
reg add "HKLM\SYSTEM\CurrentControlSet\Services\WebClient\Parameters" /v FileSizeLimitInBytes /t REG_DWORD /d 4294967295 /f
net stop WebClient && net start WebClient
Linux & power users — rclone
rclone is the gold standard for command-line cloud sync. It speaks WebDAV natively, supports FUSE mounts, and runs anywhere.
# Install (Linux / macOS)
curl https://rclone.org/install.sh | sudo bash
# Configure
rclone config
# n) new remote
# name: lifetime
# storage: webdav
# url: https://lifetimecloud.me/dav/<username>/
# vendor: other
# user: <username>
# pass: <password>
Then mount it as a real filesystem:
mkdir -p ~/lifetime
rclone mount lifetime: ~/lifetime \
--vfs-cache-mode full \
--vfs-cache-max-size 5G \
--daemon
Now ~/lifetime behaves like a local folder. cp, mv, find, rsync — all work.
Performance & offline tips
WebDAV over a typical home connection runs at 30-80 MB/s in our tests — fast enough for everyday use but slower than local disk. A few tips:
- Use rclone's VFS cache.
--vfs-cache-mode fullkeeps recently-read files locally and writes back asynchronously. - Don't mount over slow networks for big edits. For video work or large compiles, sync to a local copy first.
- Automate off-site backup. Add a cron entry:
0 2 * * * rclone sync ~/Documents lifetime:Backup/$(date +%Y-%m) - Keep the browser tab as a fallback. Useful for sharing links and managing 2FA.
One cloud, three operating systems, zero subscriptions.
LifetimeCloud ships native WebDAV out of the box. Mount once on Mac, Windows, or Linux — and treat your encrypted vault like local disk.
Get a lifetime vault →