diff --git a/doc/forum/backblaze_s3/comment_3_55362a91c4592775994999a843e648dc._comment b/doc/forum/backblaze_s3/comment_3_55362a91c4592775994999a843e648dc._comment new file mode 100644 index 0000000000..767dfa91c7 --- /dev/null +++ b/doc/forum/backblaze_s3/comment_3_55362a91c4592775994999a843e648dc._comment @@ -0,0 +1,9 @@ +[[!comment format=mdwn + username="joey" + subject="""comment 3""" + date="2020-05-11T17:04:08Z" + content=""" +Thanks for verifying it works. I've updated [[tips/using_Backblaze_B2]] to +mention this alternative, hopefully I got the config right. (Is the +endpoint always the same?) +"""]] diff --git a/doc/tips/using_Backblaze_B2.mdwn b/doc/tips/using_Backblaze_B2.mdwn index f4173aefb4..f319e0db4d 100644 --- a/doc/tips/using_Backblaze_B2.mdwn +++ b/doc/tips/using_Backblaze_B2.mdwn @@ -1,8 +1,23 @@ -For using Backblaze B2 as a special remote, there are currently two +For using Backblaze B2 as a special remote, there are currently three choices: * Using [[special_remotes/rclone]] (Actively maintained) + +* Google Cloud Storage supports supports the same API as Amazon S3, so + git-annex's built-in [[S3 special remote|special_remotes/S3]] can be used + with it. + + However, it needs S3 version 4 signatures, which are only supported by + git-annex 8.20200508 and newer. + + Here is how to set up the special remote: + + git annex initremote backblaze type=S3 signature=v4 host=$endpoint bucket=$bucketid protocol=https + + Remember to replace $endpoint with the actual backblaze endpoint and $bucketid with + the bucketid. + * A dedicated special remote, (Last updated 2016)