diff options
author | Tim Rogers <tim@gocardless.com> | 2015-12-24 12:33:57 +0000 |
---|---|---|
committer | Tim Rogers <tim@gocardless.com> | 2015-12-24 14:11:51 +0000 |
commit | 9e0fa4cddd55f9ba71b073f52c5e9ab231a39856 (patch) | |
tree | 36f5a152ca35d997d8cdc31235373ba8b2ede922 /guides | |
parent | 8678740e33132e7e380c446fd2ce96be56bd06f7 (diff) | |
download | rails-9e0fa4cddd55f9ba71b073f52c5e9ab231a39856.tar.gz rails-9e0fa4cddd55f9ba71b073f52c5e9ab231a39856.tar.bz2 rails-9e0fa4cddd55f9ba71b073f52c5e9ab231a39856.zip |
Improve RDoc documentation of ActionDispatch::SSL
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 b4ee967fcb..81e406ae2e 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`). 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`. -* `config.force_ssl` forces all requests to be served used HTTPS by using the `ActionDispatch::SSL` middleware. 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. 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.log_formatter` defines the formatter of the Rails logger. This option defaults to an instance of `ActiveSupport::Logger::SimpleFormatter` for all modes except production, where it defaults to `Logger::Formatter`. |