From 1bae05ff31b38afa709eca71f38015ed77c5b54d Mon Sep 17 00:00:00 2001 From: Bruce Bolt Date: Tue, 8 Oct 2024 10:42:27 +0100 Subject: [PATCH] Configure hosts for application Note: the healthcheck endpoints are requested by IP, not domain, so we need to specifically exclude them from the protection. --- config/environments/production.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/environments/production.rb b/config/environments/production.rb index 102c084c6..cd874c219 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -80,10 +80,10 @@ config.active_record.dump_schema_after_migration = false # Enable DNS rebinding protection and other `Host` header attacks. - # config.hosts = [ - # "example.com", # Allow requests from example.com - # /.*\.example\.com/ # Allow requests from subdomains like `www.example.com` - # ] + config.hosts = [ + /local-links-manager\..*gov.uk?/, + ] + # Skip DNS rebinding protection for the default health check endpoint. - # config.host_authorization = { exclude: ->(request) { request.path == "/up" } } + config.host_authorization = { exclude: ->(request) { request.path.match?("^\/healthcheck") } } end