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
+14 -2
packetmix
systems
teal
+14 -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 = [ 78 + "go.search.freshly.space" 79 + "starry.sk" 80 + ]; 81 82 locations."/" = { 83 proxyPass = "http://127.0.0.1:1038"; ··· 100 101 serverName = "menu.freshlybakedca.ke"; 102 103 + serverAliases = [ 104 + "go.search.freshly.space" 105 + "starry.sk" 106 + ]; 107 108 locations."/" = { 109 proxyPass = "http://127.0.0.1:1038";