about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDan Peterson <danp@danp.net>2022-12-15 11:38:51 -0400
committerGitHub <noreply@github.com>2022-12-15 16:38:51 +0100
commit3d3429243fa0bacb20aac3db6c377441c0510f22 (patch)
tree5d3a194b54e353d8e6ef629d1582cafed4662ba7
parent22e36271c5c10fbf462fb385e12b50a015d0fd99 (diff)
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>
-rw-r--r--lib/tasks/mastodon.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake
index c1e5bd2b4..3c891a07f 100644
--- a/lib/tasks/mastodon.rake
+++ b/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