Chore: Environment variable to force ssl (#561)

Fixes: #558

Co-authored-by: Pranav Raj S <pranavrajs@gmail.com>
This commit is contained in:
Sojan Jose 2020-02-26 11:36:22 +05:30 committed by GitHub
parent 1f158aa193
commit 74f8a35cfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,6 @@
SECRET_KEY_BASE=
# Force all access to the app over SSL, default is set to false
FORCE_SSL=
#redis config
REDIS_URL=redis://redis:6379

View file

@ -39,7 +39,7 @@ Rails.application.configure do
config.active_storage.service = ENV.fetch('ACTIVE_STORAGE_SERVICE', 'local').to_sym
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
config.force_ssl = ENV.fetch('FORCE_SSL', false)
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.

View file

@ -40,7 +40,7 @@ Rails.application.configure do
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
config.force_ssl = false
config.force_ssl = ENV.fetch('FORCE_SSL', false)
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.