diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-01-24 18:00:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 18:00:04 -0500 |
commit | 1b7f0283b939773bdc91730f8b0494e37d469de9 (patch) | |
tree | 3ee2a2bd8723894d1e8c28daffd5acc01ccc1da7 | |
parent | 36c840057fb46c09457a8b091d2db6351d2efeef (diff) | |
parent | ee0d0b1220adda0ee48f67cc4340ff4d702f6ed9 (diff) | |
download | rails-1b7f0283b939773bdc91730f8b0494e37d469de9.tar.gz rails-1b7f0283b939773bdc91730f8b0494e37d469de9.tar.bz2 rails-1b7f0283b939773bdc91730f8b0494e37d469de9.zip |
Merge pull request #34994 from schuetzm/host-authorization-only-in-development
Recommend adding the requested domain to hosts whitelist only in deve…
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb | 4 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb index 2fa78dd385..1fbc107e28 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.html.erb @@ -2,6 +2,6 @@ <h1>Blocked host: <%= @host %></h1> </header> <div id="container"> - <h2>To allow requests to <%= @host %>, add the following configuration:</h2> - <pre>Rails.application.config.hosts << "<%= @host %>"</pre> + <h2>To allow requests to <%= @host %>, add the following to your environment configuration:</h2> + <pre>config.hosts << "<%= @host %>"</pre> </div> diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb index 4e2d1d0b08..a94dd982a7 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/blocked_host.text.erb @@ -1,5 +1,5 @@ Blocked host: <%= @host %> -To allow requests to <%= @host %>, add the following configuration: +To allow requests to <%= @host %>, add the following to your environment configuration: - Rails.application.config.hosts << "<%= @host %>" + config.hosts << "<%= @host %>" |