Skip to content

Commit

Permalink
Fix default S3_HOSTNAME used in mastodon:setup (mastodon#19932)
Browse files Browse the repository at this point in the history
s3-us-east-1.amazonaws.com does not exist.

Co-authored-by: Effy Elden <effy@effy.space>
  • Loading branch information
2 people authored and Nonexistent committed Jan 11, 2023
1 parent 6cac623 commit cfcf47c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/mastodon.rake
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ namespace :mastodon do

env['S3_HOSTNAME'] = prompt.ask('S3 hostname:') do |q|
q.required true
q.default 's3-us-east-1.amazonaws.com'
q.default 's3.us-east-1.amazonaws.com'
q.modify :strip
end

Expand Down

0 comments on commit cfcf47c

Please sign in to comment.