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