Fixup: remove image.host from Settings
This commit is contained in:
parent
546b37f098
commit
e6aa64cb52
2 changed files with 1 additions and 4 deletions
|
@ -4,7 +4,7 @@ CarrierWave.configure do |config|
|
|||
config.storage = :aws
|
||||
config.aws_bucket = Settings.aws.bucket
|
||||
config.aws_acl = :public_read
|
||||
config.asset_host = Settings.image&.host || "https://s3-#{Settings.aws.region}.amazonaws.com/#{Settings.aws.bucket}"
|
||||
config.asset_host = Settings.image&.host || "https://#{Settings.aws.bucket}.s3.amazonaws.com"
|
||||
config.aws_authenticated_url_expiration = 60 * 60 * 24 * 365
|
||||
config.aws_credentials = {
|
||||
access_key_id: Settings.aws.access_key_id,
|
||||
|
|
|
@ -22,9 +22,6 @@ aws:
|
|||
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
|
||||
bucket: <%= ENV['S3_BUCKET_NAME'] %>
|
||||
|
||||
image:
|
||||
host: "https://#{Settings.aws.bucket}.s3.amazonaws.com"
|
||||
|
||||
mailer:
|
||||
delivery_method: "sendmail"
|
||||
address: "localhost"
|
||||
|
|
Loading…
Reference in a new issue