diff --git a/src/views/backups.html b/src/views/backups.html index 131a6a48a..353cc28fb 100644 --- a/src/views/backups.html +++ b/src/views/backups.html @@ -91,6 +91,11 @@ +
+ + +
+
diff --git a/src/views/backups.js b/src/views/backups.js index a7cf85e80..830b68376 100644 --- a/src/views/backups.js +++ b/src/views/backups.js @@ -35,6 +35,12 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat { name: 'SGP1', value: 'https://sgp1.digitaloceanspaces.com' } ]; + $scope.exoscaleSosRegions = [ + { name: 'CH-DK-2', value: 'https://sos-ch-dk-2.exo.io' }, // default + { name: 'DE-FRA-1', value: 'https://sos-de-fra-1.exo.io' }, + { name: 'AT-VIE-1', value: 'https://sos-at-vie-1.exo.io' } + ]; + $scope.storageProvider = [ { name: 'Amazon S3', value: 's3' }, { name: 'DigitalOcean Spaces', value: 'digitalocean-spaces' }, @@ -238,7 +244,6 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat backupConfig.region = 'us-east-1'; backupConfig.acceptSelfSignedCerts = $scope.configureBackup.acceptSelfSignedCerts; } else if (backupConfig.provider === 'exoscale-sos') { - backupConfig.endpoint = 'https://sos-ch-dk-2.exo.io'; backupConfig.region = 'us-east-1'; backupConfig.signatureVersion = 'v4'; } else if (backupConfig.provider === 'digitalocean-spaces') {