1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00

Add SSL enforcement and Inline job adapter examples to config/additional_environment.rb.example (#41011).

git-svn-id: https://svn.redmine.org/redmine/trunk@22945 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2024-07-26 10:00:41 +00:00
parent fded8025d5
commit 2bc9048bb1

View File

@ -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
#
# ...
#