aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorAndrew Babichev <andrew.babichev@gmail.com>2016-03-31 18:13:39 +0300
committerAndrew Babichev <andrew.babichev@gmail.com>2016-03-31 18:15:44 +0300
commit02ead6437eff88d01695e4ed0aac27f91284ad3b (patch)
treeb18e80a9f7c792480194bc3e652fbe3aecb67aa4 /guides/source/configuring.md
parent9a83ef38912063db127a3918b0f155d5d3acfe3b (diff)
downloadrails-02ead6437eff88d01695e4ed0aac27f91284ad3b.tar.gz
rails-02ead6437eff88d01695e4ed0aac27f91284ad3b.tar.bz2
rails-02ead6437eff88d01695e4ed0aac27f91284ad3b.zip
[ci skip] Parameter filter performs regular expression partial matching
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index e57d873719..e80f994deb 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. New applications filter out passwords by adding the following `config.filter_parameters+=[:password]` in `config/initializers/filter_parameter_logging.rb`.
+numbers. New applications filter out passwords by adding the following `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.