704e215eca
Also include a script to copy existing blobs to Pure. Local is still the primary. Beta will keep using local disk service for Active Storage because I think there are constraints on source IPs for the Pure cluster.
9 lines
293 B
Ruby
9 lines
293 B
Ruby
require_relative "production"
|
|
|
|
Rails.application.configure do
|
|
config.action_mailer.default_url_options = { host: "%{tenant}.37signals.works" }
|
|
|
|
# I couldn't figure out how to configure Pure to allow updates from Kevin's digital ocean instance.
|
|
config.active_storage.service = :local
|
|
end
|