diff --git a/src/views/backups.html b/src/views/backups.html index 6e03cc3fc..b66c89801 100644 --- a/src/views/backups.html +++ b/src/views/backups.html @@ -259,17 +259,18 @@ +
+ +

Save this passphrase in a safe place. Cloudron does not store this password. Backups cannot be decrypted without the passphrase

+ +
+ Advanced settings...
-
- -

Save this passphrase in a safe place. Cloudron does not store this password. Backups cannot be decrypted without the passphrase

- -
-
+

Memory limit for the backup task. Adjust this if you increase the concurrency values from their defaults.

@@ -277,6 +278,7 @@
+

Number of files to upload in parallel when backing up

@@ -284,6 +286,7 @@
+

Number of files to download in parallel when restoring

@@ -291,6 +294,9 @@
+

Number of remote file copies in parallel when backing up. + DigitalOcean Spaces rate limits at 20. +

diff --git a/src/views/backups.js b/src/views/backups.js index 8115987e7..69c391697 100644 --- a/src/views/backups.js +++ b/src/views/backups.js @@ -431,8 +431,6 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat $scope.configureBackup.externalDisk = false; $scope.configureBackup.memoryLimit = 400 * 1024 * 1024; - $scope.configureBackup.advancedVisible = false; - $scope.configureBackup.downloadConcurrency = $scope.configureBackup.provider === 's3' ? 30 : 10; $scope.configureBackup.syncConcurrency = $scope.configureBackup.provider === 's3' ? 20 : 10; $scope.configureBackup.copyConcurrency = $scope.configureBackup.provider === 's3' ? 500 : 10; @@ -442,6 +440,8 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat $scope.configureBackup.error = {}; $scope.configureBackup.busy = false; + $scope.configureBackup.advancedVisible = false; + $scope.configureBackup.provider = $scope.backupConfig.provider; $scope.configureBackup.bucket = $scope.backupConfig.bucket; $scope.configureBackup.prefix = $scope.backupConfig.prefix;