summaryrefslogtreecommitdiffstats
path: root/tv/2configs/nginx/public_html.nix
blob: a37498ba3f358c5e648f358ef8e7baa722b49179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, lib, ... }:

with import <stockholm/lib>;

{
  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."~ ^/~(.+?)(/.*)?\$".extraConfig = ''
        alias /home/$1/public_html$2;
      '';
    };
  };
  tv.iptables.input-internet-accept-tcp = singleton "http";
}