summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/go.nix
blob: ce5db62d41434127185dbd73053926b6a7b65cc9 (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, ... }:

with import <stockholm/lib>;
{
  krebs.go = {
    enable = true;
  };
  networking.firewall.allowedTCPPorts = [ 80 ];
  services.nginx = {
    enable = true;
    virtualHosts.go = {
      locations."/".extraConfig = ''
        proxy_set_header Host go.r;
        proxy_pass http://localhost:1337;
      '';
      serverAliases = [
        "go"
        "go.r"
      ];
    };
  };
}