Browse Source
Fix default S3_HOSTNAME used in mastodon:setup (#19932)
s3-us-east-1.amazonaws.com does not exist.
Co-authored-by: Effy Elden <effy@effy.space>
closed-social-glitch-2
Dan Peterson
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lib/tasks/mastodon.rake
|
|
@ -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 |
|
|
|
|
|
|
|