stockholm/krebs/2configs/go.nix

22 lines
382 B
Nix

{ config, lib, pkgs, ... }:
{
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"
];
};
};
}