summaryrefslogtreecommitdiff
path: root/data/aliases.nix
blob: 1911d53874477ddba6357bbeb0cedd12157f745d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
rec {
  ip = {
    shape = "10.0.20.15";
    raigh = "raigh.orbekk.com";
  };
  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"; };
  };
}