diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-09-12 17:15:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 17:15:46 -0400 |
commit | a66efa0b92e2b4fd6f79baa485fa3af17be257c4 (patch) | |
tree | eed48bcecd055687714683774b63a17652be3bd8 /guides/source | |
parent | ce1248a5b8944606e91edf1bc4f1f4962a4f658d (diff) | |
parent | 59cae0755eea9aa7be4d746427b007f61f33c4ec (diff) | |
download | rails-a66efa0b92e2b4fd6f79baa485fa3af17be257c4.tar.gz rails-a66efa0b92e2b4fd6f79baa485fa3af17be257c4.tar.bz2 rails-a66efa0b92e2b4fd6f79baa485fa3af17be257c4.zip |
Merge pull request #33832 from bogdanvlviv/follow-up-33756
Follow up #33756
Diffstat (limited to 'guides/source')
-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 892634c261..4c508f77f1 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -104,7 +104,7 @@ application. Accepts a valid week day symbol (e.g. `:monday`). * `config.filter_parameters` used for filtering out the parameters that 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. +numbers. It also filters out sensitive values of database columns when call `#inspect` on an Active Record object. 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://api.rubyonrails.org/classes/ActionDispatch/SSL.html) for details. |