Shorten storage endpoint display names and drop continent labels
Remove verbose continent labels from S3 names, shorten GCS region codes (us-cent1, eu-west1, asia-se1, aus-se1) to fit the name column.
This commit is contained in:
parent
ca67f65242
commit
869f123a5b
22
src/main.js
22
src/main.js
@ -37,48 +37,48 @@ const WAN_HOSTS = [
|
||||
{ name: "GitHub", url: "https://github.com" },
|
||||
{ name: "B2", url: "https://api.backblazeb2.com" },
|
||||
{
|
||||
name: "S3 af-south-1 Cape Town (Africa)",
|
||||
name: "S3 af-south-1 (Cape Town)",
|
||||
url: "https://s3.af-south-1.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 eu-west-2 London (Europe)",
|
||||
name: "S3 eu-west-2 (London)",
|
||||
url: "https://s3.eu-west-2.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 me-south-1 Bahrain (Middle East)",
|
||||
name: "S3 me-south-1 (Bahrain)",
|
||||
url: "https://s3.me-south-1.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 ap-northeast-1 Tokyo (Asia)",
|
||||
name: "S3 ap-northeast-1 (Tokyo)",
|
||||
url: "https://s3.ap-northeast-1.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 ap-southeast-2 Sydney (Oceania)",
|
||||
name: "S3 ap-southeast-2 (Sydney)",
|
||||
url: "https://s3.ap-southeast-2.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 us-west-2 Oregon (North America)",
|
||||
name: "S3 us-west-2 (Oregon)",
|
||||
url: "https://s3.us-west-2.amazonaws.com",
|
||||
},
|
||||
{
|
||||
name: "S3 sa-east-1 São Paulo (South America)",
|
||||
name: "S3 sa-east-1 (São Paulo)",
|
||||
url: "https://s3.sa-east-1.amazonaws.com",
|
||||
},
|
||||
// GCS locational endpoints — compare GCP routing vs AWS per-continent
|
||||
{
|
||||
name: "GCS us-central1 Iowa (North America)",
|
||||
name: "GCS us-cent1 (Iowa)",
|
||||
url: "https://storage.us-central1.rep.googleapis.com",
|
||||
},
|
||||
{
|
||||
name: "GCS europe-west1 Belgium (Europe)",
|
||||
name: "GCS eu-west1 (Belgium)",
|
||||
url: "https://storage.europe-west1.rep.googleapis.com",
|
||||
},
|
||||
{
|
||||
name: "GCS asia-southeast1 Singapore (Asia)",
|
||||
name: "GCS asia-se1 (Singapore)",
|
||||
url: "https://storage.asia-southeast1.rep.googleapis.com",
|
||||
},
|
||||
{
|
||||
name: "GCS australia-southeast1 Sydney (Oceania)",
|
||||
name: "GCS aus-se1 (Sydney)",
|
||||
url: "https://storage.australia-southeast1.rep.googleapis.com",
|
||||
},
|
||||
];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user