Skip to content

Instantly share code, notes, and snippets.

@ptrxyz
Created April 4, 2022 11:29
Show Gist options
  • Save ptrxyz/7d245d663e7c72d9ece9f27cec76a677 to your computer and use it in GitHub Desktop.
Save ptrxyz/7d245d663e7c72d9ece9f27cec76a677 to your computer and use it in GitHub Desktop.
@link = if Rails.env.production?
"#{(ENV['URL_USE_SSL'] == 1 || ENV['URL_USE_SSL'] == 'true') && 'https' || 'http'}://#{ENV['URL_HOST'] || ENV['HOST'] || ENV['SMTP_DOMAIN']}/zip/#{job_id}.#{extname}"
else
"http://#{ENV['URL_HOST'] || ENV['HOST'] || 'localhost:3000'}/zip/#{job_id}.#{extname}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment