summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-07-26 10:00:41 +0000
committerGo MAEDA <maeda@farend.jp>2024-07-26 10:00:41 +0000
commit2bc9048bb1db4f7bbc872fb1a4a1ce922ad5173e (patch)
tree15588ddcf90f89dccfeb45e3b7281ef8167fc721 /config
parentfded8025d577baf1f1003d8e6b9f64606f2a798b (diff)
downloadredmine-2bc9048bb1db4f7bbc872fb1a4a1ce922ad5173e.tar.gz
redmine-2bc9048bb1db4f7bbc872fb1a4a1ce922ad5173e.zip
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
Diffstat (limited to 'config')
-rw-r--r--config/additional_environment.rb.example10
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
+#
# ...
#