enforce LOCAL_HTTPS=true in production (#6061)
* enforce https in production * note changes in production env sample * typo fix
This commit is contained in:
parent
cea98e0c12
commit
9592b5e31e
2 changed files with 5 additions and 3 deletions
|
@ -3,11 +3,12 @@
|
|||
port = ENV.fetch('PORT') { 3000 }
|
||||
host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
|
||||
web_host = ENV.fetch('WEB_DOMAIN') { host }
|
||||
https = ENV['LOCAL_HTTPS'] == 'true'
|
||||
|
||||
alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { '' }
|
||||
|
||||
Rails.application.configure do
|
||||
https = Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'
|
||||
|
||||
config.x.local_domain = host
|
||||
config.x.web_domain = web_host
|
||||
config.x.use_https = https
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue