From: Claire Date: Mon, 17 May 2021 20:36:08 +0000 (+0200) Subject: Fix host check on healthcheck path not being disabled (#16270) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=97539b6a96c1a3773aceb492d213620132d2a1fb;p=mastodon.git Fix host check on healthcheck path not being disabled (#16270) Fixes #16251 There was a typo in #16243 --- diff --git a/config/initializers/1_hosts.rb b/config/initializers/1_hosts.rb index f470fddb3..6ff0845c4 100644 --- a/config/initializers/1_hosts.rb +++ b/config/initializers/1_hosts.rb @@ -31,6 +31,6 @@ Rails.application.configure do config.hosts << host if host.present? config.hosts << web_host if web_host.present? config.hosts.concat(alternate_domains) if alternate_domains.present? - config.hosts_authorization = { exclude: ->(request) { request.path == '/health' } } + config.host_authorization = { exclude: ->(request) { request.path == '/health' } } end end