feat(pm/menu): add starry.sk domain #141

merged
opened by a.starrysky.fyi targeting main from private/minion/push-mpvpoxrvtrvk

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

Changed files
+8 -2
packetmix
systems
teal
+8 -2
packetmix/systems/teal/menu.nix
··· 56 type = "A"; 57 value = "100.64.0.5"; 58 } 59 ]; 60 61 services.nginx.virtualHosts."menu.freshlybakedca.ke" = { ··· 68 enableACME = true; 69 acmeRoot = null; 70 71 - serverAliases = [ "go.search.freshly.space" ]; 72 73 locations."/" = { 74 proxyPass = "http://127.0.0.1:1038"; ··· 91 92 serverName = "menu.freshlybakedca.ke"; 93 94 - serverAliases = [ "go.search.freshly.space" ]; 95 96 locations."/" = { 97 proxyPass = "http://127.0.0.1:1038";
··· 56 type = "A"; 57 value = "100.64.0.5"; 58 } 59 + { 60 + # starry.sk -> teal 61 + name = "starry.sk"; 62 + type = "A"; 63 + value = "100.64.0.5"; 64 + } 65 ]; 66 67 services.nginx.virtualHosts."menu.freshlybakedca.ke" = { ··· 74 enableACME = true; 75 acmeRoot = null; 76 77 + serverAliases = [ "go.search.freshly.space" "starry.sk" ]; 78 79 locations."/" = { 80 proxyPass = "http://127.0.0.1:1038"; ··· 97 98 serverName = "menu.freshlybakedca.ke"; 99 100 + serverAliases = [ "go.search.freshly.space" "starry.sk" ]; 101 102 locations."/" = { 103 proxyPass = "http://127.0.0.1:1038";