Fix typo in assume_ssl configuration guide

This commit is contained in:
Michael Hadley 2023-01-27 19:09:38 -08:00
parent 6b30c3f410
commit c22e20e79c
2 changed files with 2 additions and 2 deletions

@ -3,7 +3,7 @@
*Joel Hawksley*, *Kate Higa*
* Add `ActionDispatch::AssumeSSL` middleware that can be turned on via `config.assume_ssl`.
It makes the application believe that all requests are arring over SSL. This is useful
It makes the application believe that all requests are arriving over SSL. This is useful
when proxying through a load balancer that terminates SSL, the forwarded request will appear
as though its HTTP instead of HTTPS to the application. This makes redirects and cookie
security target HTTP instead of HTTPS. This middleware makes the server assume that the

@ -196,7 +196,7 @@ Sets the host for the assets. Useful when CDNs are used for hosting assets, or w
#### `config.assume_ssl`
Makes application believe that all requests are arring over SSL. This is useful when proxying through a load balancer that terminates SSL, the forwarded request will appear as though its HTTP instead of HTTPS to the application. This makes redirects and cookie security target HTTP instead of HTTPS. This middleware makes the server assume that the proxy already terminated SSL, and that the request really is HTTPS.
Makes application believe that all requests are arriving over SSL. This is useful when proxying through a load balancer that terminates SSL, the forwarded request will appear as though its HTTP instead of HTTPS to the application. This makes redirects and cookie security target HTTP instead of HTTPS. This middleware makes the server assume that the proxy already terminated SSL, and that the request really is HTTPS.
#### `config.autoflush_log`