diff --git a/Running-Mastodon/Heroku-guide.md b/Running-Mastodon/Heroku-guide.md index 9f74cbcb..697abd15 100644 --- a/Running-Mastodon/Heroku-guide.md +++ b/Running-Mastodon/Heroku-guide.md @@ -57,7 +57,7 @@ S3 Bucket is just the name of the bucket, e.g. `bucketname` not the full ARN. S3 Region is the AWS code for the region e.g. `ap-northeast-1` not the name of the city displayed on the AWS Dashboard. -To protect the privacy of the users of the your instance, you should have permissons on the your S3 bucket set to no-read and no-write for the public and non-application-specific AWS users, with only one authorized IAM user or group set up to be able to upload or display content. This is an example of an IAM policy used for the S3 bucket used Mastadon instance hentai.loan: +To protect the privacy of the users of the your instance, you should have permissons on the your S3 bucket set to no-read and no-write for the public and non-application-specific AWS users, with only one authorized IAM user or group set up to be able to upload or display content. This is an example of an IAM policy used for the S3 bucket: { "Version": "2012-10-17", @@ -77,8 +77,8 @@ To protect the privacy of the users of the your instance, you should have permis "s3:*" ], "Resource": [ - "arn:aws:s3:::hentailoan", - "arn:aws:s3:::hentailoan/*" + "arn:aws:s3:::mastodon", + "arn:aws:s3:::mastodon/*" ] } ]