logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

ostatus.rb (1002B)


  1. # frozen_string_literal: true
  2. port = ENV.fetch('PORT') { 3000 }
  3. host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
  4. web_host = ENV.fetch('WEB_DOMAIN') { host }
  5. alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { '' }
  6. Rails.application.configure do
  7. https = Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'
  8. config.x.local_domain = host
  9. config.x.web_domain = web_host
  10. config.x.use_https = https
  11. config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
  12. config.x.use_swift = ENV['SWIFT_ENABLED'] == 'true'
  13. config.x.alternate_domains = alternate_domains.split(/\s*,\s*/)
  14. config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
  15. config.x.streaming_api_base_url = ENV.fetch('STREAMING_API_BASE_URL') do
  16. if Rails.env.production?
  17. "ws#{https ? 's' : ''}://#{web_host}"
  18. else
  19. "ws://#{ENV['REMOTE_DEV'] == 'true' ? host.split(':').first : 'localhost'}:4000"
  20. end
  21. end
  22. end