From c497e5c2dd54d2df339296f41f8f65d70dd335c3 Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Sat, 3 Jan 2026 20:50:56 +0000 Subject: [PATCH] feat(pm/menu): add starry.sk domain Change-Id: vnmynortxuqqluxwtwuuxqwpqkykuzkv I've chatted with Coded, and we think it's better to run the same shortener on all our short domains than to have separate shorteners for separate domains. Therefore, let's extend menu to starry.sk --- packetmix/systems/teal/menu.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/packetmix/systems/teal/menu.nix b/packetmix/systems/teal/menu.nix index 0dc652ec..87f81602 100644 --- a/packetmix/systems/teal/menu.nix +++ b/packetmix/systems/teal/menu.nix @@ -56,6 +56,12 @@ type = "A"; value = "100.64.0.5"; } + { + # starry.sk -> teal + name = "starry.sk"; + type = "A"; + value = "100.64.0.5"; + } ]; services.nginx.virtualHosts."menu.freshlybakedca.ke" = { @@ -68,7 +74,10 @@ enableACME = true; acmeRoot = null; - serverAliases = [ "go.search.freshly.space" ]; + serverAliases = [ + "go.search.freshly.space" + "starry.sk" + ]; locations."/" = { proxyPass = "http://127.0.0.1:1038"; @@ -91,7 +100,10 @@ serverName = "menu.freshlybakedca.ke"; - serverAliases = [ "go.search.freshly.space" ]; + serverAliases = [ + "go.search.freshly.space" + "starry.sk" + ]; locations."/" = { proxyPass = "http://127.0.0.1:1038"; -- 2.43.0