From a7860870f2ba789cd40a08c0e63d3fc767459159 Mon Sep 17 00:00:00 2001 From: Falco Hirschenberger Date: Tue, 6 Feb 2024 15:19:53 +0100 Subject: [PATCH] feat(config): add example config for owncloud and nextcloud (#1052) --- config/services/webdav_owncloud_nextcloud.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 config/services/webdav_owncloud_nextcloud.toml diff --git a/config/services/webdav_owncloud_nextcloud.toml b/config/services/webdav_owncloud_nextcloud.toml new file mode 100644 index 0000000..b9a9e8d --- /dev/null +++ b/config/services/webdav_owncloud_nextcloud.toml @@ -0,0 +1,9 @@ +[repository] +repository = "opendal:webdav" +password = "my-backup-password" + +[repository.options] +endpoint = "https://my-owncloud-server.com" +root = "remote.php/webdav/my-folder" +username = "owncloud-user" +password = "owncloud-passcode"