-
-
Notifications
You must be signed in to change notification settings - Fork 800
Description
I'm currently using Duplicity for my off-site backups which works quite well apart from one thing: it lacks incremental forever backups.
Borg does have this feature.
However, my backup backend only supports WebDAV. In Duplicity I can directly use a WebDAV backend but Borg only seems to support SSH. I could mount the WebDAV server locally, but davfs2 isn't available on FreeBSD (the platform of my fileserver). There is an analog called wdfs, but it hasn't been updated since 2007. Besides, I've always been told that mounting (off-site) backups locally isn't a good idea because that makes it more likely that your backups can be overwritten in some way.
So, if I want to use Borg instead of duplicity, I'd have two options, none of which are ideal:
- Mounting the WebDAV server locally using wdfs
- Running Borg on a separate VM running Linux, mounting the WebDAV server locally using davfs2, using NFS to access the FreeBSD fileserver
So I was curious whether support for other protocols, like WebDAV, is a planned feature.