From f7bfc972bee2f14a5bbd4c2e7080ae3e0d40069f Mon Sep 17 00:00:00 2001 From: Alex Bates Date: Mon, 21 Sep 2026 14:25:47 +0100 Subject: [PATCH] kuribo: bind tranquil-pds to 127.0.0.1 Tranquil PDS defaults to [::1] (IPv6 loopback only), but Caddy's reverse_proxy and the on-demand TLS helper both connect over IPv4 127.0.0.1, so the PDS was unreachable and TLS issuance failed. --- servers/kuribo/tranquil-pds.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/servers/kuribo/tranquil-pds.nix b/servers/kuribo/tranquil-pds.nix index 9aaff44..71647b2 100644 --- a/servers/kuribo/tranquil-pds.nix +++ b/servers/kuribo/tranquil-pds.nix @@ -18,6 +18,7 @@ in settings = { server = { hostname = "pds.starhaven.dev"; + host = "127.0.0.1"; port = 3000; user_handle_domains = [ "starhaven.dev" ]; contact_email = "admin@starhaven.dev"; -- 2.51.2