diff --git a/src/js/restore.js b/src/js/restore.js index a6a4053c6..f0d3bda04 100644 --- a/src/js/restore.js +++ b/src/js/restore.js @@ -114,6 +114,7 @@ app.controller('RestoreController', ['$scope', 'Client', function ($scope, Clien { name: 'Singapore', value: 'ap-south-1.linodeobjects.com', region: 'us-east-1' }, ]; + // note: ovh also has a storage endpoint but that only supports path style access $scope.ovhRegions = [ { name: 'Beauharnois (BHS)', value: 'https://s3.bhs.cloud.ovh.net', region: 'bhs' }, // default { name: 'Frankfurt (DE)', value: 'https://s3.de.cloud.ovh.net', region: 'de' }, diff --git a/src/views/app.js b/src/views/app.js index 8b249e788..5efd0972a 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -71,6 +71,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' { name: 'Singapore', value: 'ap-south-1.linodeobjects.com', region: 'us-east-1' }, ]; + // note: ovh also has a storage endpoint but that only supports path style access $scope.ovhRegions = [ { name: 'Beauharnois (BHS)', value: 'https://s3.bhs.cloud.ovh.net', region: 'bhs' }, // default { name: 'Frankfurt (DE)', value: 'https://s3.de.cloud.ovh.net', region: 'de' }, diff --git a/src/views/backups.js b/src/views/backups.js index 237e1c05c..d0d65c8f5 100644 --- a/src/views/backups.js +++ b/src/views/backups.js @@ -75,6 +75,7 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat { name: 'Singapore', value: 'ap-south-1.linodeobjects.com', region: 'us-east-1' } ]; + // note: ovh also has a storage endpoint but that only supports path style access $scope.ovhRegions = [ { name: 'Beauharnois (BHS)', value: 'https://s3.bhs.cloud.ovh.net', region: 'bhs' }, // default { name: 'Frankfurt (DE)', value: 'https://s3.de.cloud.ovh.net', region: 'de' },