diff options
-rw-r--r-- | config/additional_environment.rb.example | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/additional_environment.rb.example b/config/additional_environment.rb.example index 2a317a396..57ca1021a 100644 --- a/config/additional_environment.rb.example +++ b/config/additional_environment.rb.example @@ -2,9 +2,17 @@ # that need to be passed to the Rails::Initializer. `config` is # available in this context. # -# Example: +# Examples: # # config.log_level = :debug +# +# # Force access via SSL connection and set the "secure" flag on cookies +# config.force_ssl = true if Rails.env.production? +# +# # Use the Inline adapter for Active Job when you don't want to +# # set up external systems like Sidekiq and Redis. +# config.active_job.queue_adapter = :inline +# # ... # |