From e2086ada2b287d58135543d92d62d781a5a17105 Mon Sep 17 00:00:00 2001 From: szaimen Date: Thu, 24 Feb 2022 01:27:14 +0100 Subject: [PATCH] make clear that the external storage app is not covered by the built-in backup solution Signed-off-by: szaimen --- php/templates/containers.twig | 1 + readme.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 25792712..9c1efa3a 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -210,6 +210,7 @@ Backed up will get all important data of your Nextcloud AIO instance like the database, your files and configuration files of the mastercontainer and else.

The backup itself will use a tool that is called BorgBackup which is a well-known server backup tool that efficiently backs up your files and encrypts them on the fly.

Backups get created in the following directory on the host: {{ borg_backup_host_location }}/borg

+ Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app.

{% if isApacheStarting != true %}
diff --git a/readme.md b/readme.md index 63f13559..a59c5900 100644 --- a/readme.md +++ b/readme.md @@ -117,6 +117,8 @@ Backups can be created and restored in the AIO interface using the buttons `Crea The backups itself get encrypted with an encryption key that gets shown to you in the AIO interface. Please save that at a safe place as you will not be able to restore from backup without this key. +Be aware that this solution does not back up files and folders that are mounted into Nextcloud using the external storage app. + Note that this implementation does not provide remote backups, for this you can use the [backup app](https://apps.nextcloud.com/apps/backup). ---