diff options
author | Joey Hess <joey@kitenet.net> | 2014-10-23 10:53:37 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-10-23 11:02:02 -0400 |
commit | 13c64bf59863b48d4051a512da33f025b56227ae (patch) | |
tree | 69ecf4b0bff0fcd9048c1a9a165a2397e93a9c97 /Remote | |
parent | 23380fa79f3cb485124096413a53902f4e252674 (diff) |
add new frankfurt region to list in webapp
But commented out for now, because:
The authorization mechanism you have provided is not supported. Please use
AWS4-HMAC-SHA256
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Helper/AWS.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Remote/Helper/AWS.hs b/Remote/Helper/AWS.hs index 0687a5ee1..9b3643bc2 100644 --- a/Remote/Helper/AWS.hs +++ b/Remote/Helper/AWS.hs @@ -45,6 +45,9 @@ regionInfo service = map (\(t, r) -> (t, fromServiceRegion r)) $ [ ("US East (N. Virginia)", [S3Region "US", GlacierRegion "us-east-1"]) , ("US West (Oregon)", [BothRegion "us-west-2"]) , ("US West (N. California)", [BothRegion "us-west-1"]) + -- Requires AWS4-HMAC-SHA256 which S3 library does not + -- currently support. + -- , ("EU (Frankfurt)", [BothRegion "eu-central-1"]) , ("EU (Ireland)", [S3Region "EU", GlacierRegion "eu-west-1"]) , ("Asia Pacific (Singapore)", [S3Region "ap-southeast-1"]) , ("Asia Pacific (Tokyo)", [BothRegion "ap-northeast-1"]) |