blob: 8445ecd9fac90f27d75caea95d70c0e18ce15ec6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
rec {
ip = {
dragon = "10.0.20.2";
shape = "10.0.20.15";
raigh = "raigh.orbekk.com";
ap2 = "10.10.255.2";
};
services = {
hydra = { address = ip.shape; port = 11101; };
matrix = { address = ip.shape; port = 11102; };
matrixFederation = { address = ip.shape; port = 8448; };
git = { address = ip.shape; port = 11103; };
fcgi = { address = ip.shape; port = 11104; };
systemhttpd = { address = ip.shape; port = 11105; };
linoquotes = { address = ip.raigh; port = 11106; };
stats = { home = "/var/lib/stats"; };
wireguard = { port = 11107; };
mpd = { address = ip.dragon; port = 11108; };
mpdweb = { address = ip.dragon; port = 11109; };
pjournal = { address = ip.dragon; port = 11110; };
grafana = { port = 11111; };
prometheus = { port = 11112; };
prometheus-exporter = { port = 11113; };
prometheus-snmp-exporter = { port = 11114; };
};
}
|