diff --git a/backend/storj/fs.go b/backend/storj/fs.go index 0f941e5de..cd36db6f2 100644 --- a/backend/storj/fs.go +++ b/backend/storj/fs.go @@ -32,9 +32,9 @@ const ( ) var satMap = map[string]string{ - "us-central-1.storj.io": "12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S@us-central-1.tardigrade.io:7777", - "europe-west-1.storj.io": "12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs@europe-west-1.tardigrade.io:7777", - "asia-east-1.storj.io": "121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6@asia-east-1.tardigrade.io:7777", + "us1.storj.io": "12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S@us1.storj.io:7777", + "eu1.storj.io": "12L9ZFwhzVpuEKMUNUqkaTLGzwY9G24tbiigLiXpmZWKwmcNDDs@eu1.storj.io:7777", + "ap1.storj.io": "121RTSDpyNZVcEU84Ticf2L1ntiuUimbWgfATz21tuvgk3vzoA6@ap1.storj.io:7777", } // Register with Fs @@ -106,16 +106,16 @@ func init() { Name: "satellite_address", Help: "Satellite address.\n\nCustom satellite address should match the format: `@
:`.", Provider: newProvider, - Default: "us-central-1.storj.io", + Default: "us1.storj.io", Examples: []fs.OptionExample{{ - Value: "us-central-1.storj.io", - Help: "US Central 1", + Value: "us1.storj.io", + Help: "US1", }, { - Value: "europe-west-1.storj.io", - Help: "Europe West 1", + Value: "eu1.storj.io", + Help: "EU1", }, { - Value: "asia-east-1.storj.io", - Help: "Asia East 1", + Value: "ap1.storj.io", + Help: "AP1", }, }, }, diff --git a/docs/content/flags.md b/docs/content/flags.md index 48771a909..fa0045834 100644 --- a/docs/content/flags.md +++ b/docs/content/flags.md @@ -652,7 +652,7 @@ and may be set in the config file. --storj-api-key string API key --storj-passphrase string Encryption passphrase --storj-provider string Choose an authentication method (default "existing") - --storj-satellite-address string Satellite address (default "us-central-1.storj.io") + --storj-satellite-address string Satellite address (default "us1.storj.io") --sugarsync-access-key-id string Sugarsync Access Key ID --sugarsync-app-id string Sugarsync App ID --sugarsync-authorization string Sugarsync authorization diff --git a/docs/content/storj.md b/docs/content/storj.md index cd0d936c5..6427f009b 100644 --- a/docs/content/storj.md +++ b/docs/content/storj.md @@ -183,14 +183,14 @@ Choose a number from below, or type in your own value \ "new" provider> new Satellite Address. Custom satellite address should match the format: `@
:`. -Enter a string value. Press Enter for the default ("us-central-1.storj.io"). +Enter a string value. Press Enter for the default ("us1.storj.io"). Choose a number from below, or type in your own value - 1 / US Central 1 - \ "us-central-1.storj.io" - 2 / Europe West 1 - \ "europe-west-1.storj.io" - 3 / Asia East 1 - \ "asia-east-1.storj.io" + 1 / US1 + \ "us1.storj.io" + 2 / EU1 + \ "eu1.storj.io" + 3 / AP1 + \ "ap1.storj.io" satellite_address> 1 API Key. Enter a string value. Press Enter for the default (""). @@ -202,7 +202,7 @@ Remote config -------------------- [remote] type = storj -satellite_address = 12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S@us-central-1.tardigrade.io:7777 +satellite_address = 12EayRS2V1kEsWESU9QMRseFhdxYxKicsiFmxrsLZHeLUtdps3S@us1.storj.io:7777 api_key = your-api-key-for-your-storj-project passphrase = your-human-readable-encryption-passphrase access_grant = the-access-grant-generated-from-the-api-key-and-passphrase @@ -258,14 +258,14 @@ Properties: - Env Var: RCLONE_STORJ_SATELLITE_ADDRESS - Provider: new - Type: string -- Default: "us-central-1.storj.io" +- Default: "us1.storj.io" - Examples: - - "us-central-1.storj.io" - - US Central 1 - - "europe-west-1.storj.io" - - Europe West 1 - - "asia-east-1.storj.io" - - Asia East 1 + - "us1.storj.io" + - US1 + - "eu1.storj.io" + - EU1 + - "ap1.storj.io" + - AP1 #### --storj-api-key