Skip to content

Commit

Permalink
Rename S3_CLOUDFRONT_HOST to S3_ALIAS_HOST. (mastodon#8423)
Browse files Browse the repository at this point in the history
Still check for S3_CLOUDFRONT_HOST for existing installs.
  • Loading branch information
dracos authored and Gargron committed Aug 25, 2018
1 parent 29da56c commit 2bba6e5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .env.nanobox
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ SMTP_FROM_ADDRESS=notifications@${APP_NAME}.nanoapp.io
# Defaults to 60 seconds. Set to 0 to disable
# SWIFT_CACHE_TTL=

# Optional alias for S3 if you want to use Cloudfront or Cloudflare in front
# S3_CLOUDFRONT_HOST=
# Optional alias for S3 (e.g. to serve files on a custom domain, possibly using Cloudfront or Cloudflare)
# S3_ALIAS_HOST=

# Streaming API integration
# STREAMING_API_BASE_URL=
Expand Down
4 changes: 2 additions & 2 deletions .env.production.sample
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ SMTP_FROM_ADDRESS=notifications@example.com
# Defaults to 60 seconds. Set to 0 to disable
# SWIFT_CACHE_TTL=

# Optional alias for S3 if you want to use Cloudfront or Cloudflare in front
# S3_CLOUDFRONT_HOST=
# Optional alias for S3 (e.g. to serve files on a custom domain, possibly using Cloudfront or Cloudflare)
# S3_ALIAS_HOST=

# Streaming API integration
# STREAMING_API_BASE_URL=
Expand Down
4 changes: 2 additions & 2 deletions config/initializers/paperclip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
Paperclip::Attachment.default_options[:url] = ':s3_path_url'
end

if ENV.has_key?('S3_CLOUDFRONT_HOST')
if ENV.has_key?('S3_ALIAS_HOST') || ENV.has_key?('S3_CLOUDFRONT_HOST')
Paperclip::Attachment.default_options.merge!(
url: ':s3_alias_url',
s3_host_alias: ENV['S3_CLOUDFRONT_HOST']
s3_host_alias: ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST']
)
end
elsif ENV['SWIFT_ENABLED'] == 'true'
Expand Down
4 changes: 2 additions & 2 deletions config/webpack/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ try {
let attachmentHost;

if (process.env.S3_ENABLED === 'true') {
if (process.env.S3_CLOUDFRONT_HOST) {
attachmentHost = process.env.S3_CLOUDFRONT_HOST;
if (process.env.S3_ALIAS_HOST || process.env.S3_CLOUDFRONT_HOST) {
attachmentHost = process.env.S3_ALIAS_HOST || process.env.S3_CLOUDFRONT_HOST;
} else {
attachmentHost = process.env.S3_HOSTNAME || `s3-${process.env.S3_REGION || 'us-east-1'}.amazonaws.com`;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/mastodon.rake
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ namespace :mastodon do
end

if prompt.yes?('Do you want to access the uploaded files from your own domain?')
env['S3_CLOUDFRONT_HOST'] = prompt.ask('Domain for uploaded files:') do |q|
env['S3_ALIAS_HOST'] = prompt.ask('Domain for uploaded files:') do |q|
q.required true
q.default "files.#{env['LOCAL_DOMAIN']}"
q.modify :strip
Expand Down

0 comments on commit 2bba6e5

Please sign in to comment.