summaryrefslogtreecommitdiff
path: root/data/aliases.nix
blob: b4ea539206a034c6e126cd83019fec725d2fccc7 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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;
    };
    grafana = { port = 11111; };
    prometheus = { port = 11112; };
    prometheus-exporter = { port = 11113; };
    prometheus-snmp-exporter = { port = 11114; };
    hledger-web = { port = 11116; };
    prometheus-pms7003-exporter = { host = "172.20.100.10"; port = 11117; };
    keycloak = { http-port = 11118; https-port = 11119; };
  };
}