blob: c39b08a8e44b5bde6ad71de92f93c397db9d7225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
environment.systemPackages = [
pkgs.go-shortener
];
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"
];
};
};
}
|