Files
fizzy/config/environments/beta.rb
T
Mike Dalessio 704e215eca Production mirrors Active Storage to :purestorage
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.
2025-05-31 14:37:35 -04:00

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