Actions
Patch #41011
closedAdd more configuration examples to config/additional_environment.rb.example
Description
diff --git a/config/additional_environment.rb.example b/config/additional_environment.rb.example
index 2a317a396..31eee0541 100644
--- a/config/additional_environment.rb.example
+++ b/config/additional_environment.rb.example
@@ -5,6 +5,14 @@
# Example:
#
# 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 simple :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
+#
# ...
#
Related issues
Updated by Go MAEDA 4 months ago
- Related to Feature #24763: Force SSL when Setting.protocol is "https" added
Actions