diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2017-02-07 18:40:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-07 18:40:28 -0500 |
commit | 25c6f4c947450c75c5a43ded19d7b6ca8b7c95b6 (patch) | |
tree | e6428bb3c592360aabbf4f8526945d3cad0ef9cf /guides | |
parent | 770e685c22ba84a8b04d317a434cf2565f378c68 (diff) | |
parent | 529cebe22fb363385c00c8da833a74ba4aeaee03 (diff) | |
download | rails-25c6f4c947450c75c5a43ded19d7b6ca8b7c95b6.tar.gz rails-25c6f4c947450c75c5a43ded19d7b6ca8b7c95b6.tar.bz2 rails-25c6f4c947450c75c5a43ded19d7b6ca8b7c95b6.zip |
Merge pull request #27938 from y-yagi/remove_link_to_edgeapi
remove link to edgeapi [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index b0334bfe4a..baa1efe0d3 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -108,7 +108,7 @@ application. Accepts a valid week day symbol (e.g. `:monday`). you don't want shown in the logs, such as passwords or credit card numbers. By default, Rails filters out passwords by adding `Rails.application.config.filter_parameters += [:password]` in `config/initializers/filter_parameter_logging.rb`. Parameters filter works by partial matching regular expression. -* `config.force_ssl` forces all requests to be served over HTTPS by using the `ActionDispatch::SSL` middleware, and sets `config.action_mailer.default_url_options` to be `{ protocol: 'https' }`. This can be configured by setting `config.ssl_options` - see the [ActionDispatch::SSL documentation](http://edgeapi.rubyonrails.org/classes/ActionDispatch/SSL.html) for details. +* `config.force_ssl` forces all requests to be served over HTTPS by using the `ActionDispatch::SSL` middleware, and sets `config.action_mailer.default_url_options` to be `{ protocol: 'https' }`. This can be configured by setting `config.ssl_options` - see the [ActionDispatch::SSL documentation](http://api.rubyonrails.org/classes/ActionDispatch/SSL.html) for details. * `config.log_formatter` defines the formatter of the Rails logger. This option defaults to an instance of `ActiveSupport::Logger::SimpleFormatter` for all modes. If you are setting a value for `config.logger` you must manually pass the value of your formatter to your logger before it is wrapped in an `ActiveSupport::TaggedLogging` instance, Rails will not do it for you. |