aboutsummaryrefslogtreecommitdiff
path: root/srv/h-alpha/services.nix
blob: aa01c0b9bd6a744aa114d1984c455345b113a12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  config,
  lib,
  pkgs,
  modulesPath,
  ...
}:
{
  imports = [
    ../../modules/caddy.nix
  ];
  services.neaCaddy = {
    enable = true;
    baseUrl = "alpha-site.nea.moe";
    reverseProxy = {
      "sentry" = {
        port = 1234;
      };

    };
  };
}