5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-09-28 17:16:57 +00:00
panel/config/initializers/hosts.rb

11 lines
253 B
Ruby

# frozen_string_literal: true
Rails.application.configure do
next unless ENV['RAILS_ENV'] == 'development'
domain = ENV.fetch('SUTTY', 'sutty.nl')
config.hosts << domain
config.hosts << "panel.#{domain}"
config.hosts << "api.#{domain}"
end