From a68bd2775dab89187ea90f5f7bbdc6776e11c110 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Tue, 16 Dec 2025 09:35:26 -0800 Subject: [PATCH] Fix Tailscale host match. Rails wraps the regexp in its own anchors and port-match. --- config/environments/development.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index e40d4fe16..1af03fdd4 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -89,8 +89,8 @@ Rails.application.configure do "fizzy.localhost", "localhost", "127.0.0.1", - /^fizzy-\d+(:\d+)?$/, # review apps: fizzy-123:3000 - /\.ts\.net$/ # tailscale serve: hostname.tail1234.ts.net + /fizzy-\d+/, # review apps: fizzy-123, fizzy-456:3000 + /.*\.ts\.net/, # tailscale serve: hostname.tail1234.ts.net ] # Canonical host for mailer URLs (emails always link here, not personal Tailscale URLs)