diff --git a/src/cloudron.js b/src/cloudron.js index 65d69555d..671f62ad1 100644 --- a/src/cloudron.js +++ b/src/cloudron.js @@ -208,7 +208,7 @@ function checkBackupConfiguration(callback) { if (backupConfig.provider === 'noop') { notifications.backupConfigWarning('Cloudron backups are disabled. Please ensure this server is backed up using alternate means. See https://cloudron.io/documentation/backups/#storage-providers for more information'); } else if (backupConfig.provider === 'filesystem' && !backupConfig.externalDisk) { - notifications.backupConfigWarning('Cloudron backups are currently on the same disk as the Cloudron server instance. This is dangerous and can lead to complete data loss if the disk fails. See https://cloudron.io/documentation/backups/#filesystem for more information'); + notifications.backupConfigWarning('Cloudron backups are currently on the same disk as the Cloudron server instance. This is dangerous and can lead to complete data loss if the disk fails. See https://cloudron.io/documentation/backups/#storage-providers for setting up an external storage provider'); } }); }