summaryrefslogtreecommitdiffstats
path: root/tv/2configs/nginx/public_html.nix
blob: c2403cd8d84997d66c692649bedf7686a539fb4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
with import ./lib;
{ config, ... }: {
  services.nginx = {
    enable = true;
    virtualHosts.default = {
      serverAliases = [
        "localhost"
        "${config.krebs.build.host.name}"
        "${config.krebs.build.host.name}.hkw"
        "${config.krebs.build.host.name}.r"
      ];
      locations."~ ^/~([a-z]+)(?:/(.*))?\$" = {
        alias = "/srv/$1/public_html/$2";
      };
    };
  };
  tv.iptables.input-internet-accept-tcp = singleton "http";
}