backups: add contabo object storage

This commit is contained in:
Girish Ramakrishnan
2023-08-25 07:59:40 +05:30
parent f6977cd15a
commit 34c997401f
9 changed files with 49 additions and 6 deletions

View File

@@ -226,11 +226,19 @@ const REGIONS_VULTR = [
{ name: 'Singapore', value: 'https://sgp1.vultrobjects.com', region: 'ap-southeast-1' },
];
// https://docs.contabo.com/docs/products/Object-Storage/s3-connection-settings
const REGIONS_CONTABO = [
{ name: 'European Union (Germany)', value: 'https://eu2.contabostorage.com' , region: 'us-east-1' },
{ name: 'Singapore', value: 'https://sin1.contabostorage.com' , region: 'us-east-1' },
{ name: 'United States', value: 'https://usc1.contabostorage.com' , region: 'us-east-1' }
];
const STORAGE_PROVIDERS = [
{ name: 'Amazon S3', value: 's3' },
{ name: 'Backblaze B2 (S3 API)', value: 'backblaze-b2' },
{ name: 'CIFS Mount', value: 'cifs' },
{ name: 'Cloudflare R2', value: 'cloudflare-r2' },
{ name: 'Contabo Object Storage', value: 'contabo-objectstorage' },
{ name: 'DigitalOcean Spaces', value: 'digitalocean-spaces' },
{ name: 'External/Local Disk (EXT4 or XFS)', value: 'disk' },
{ name: 'EXT4 Disk', value: 'ext4' },