20 lines
337 B
Nix
20 lines
337 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
krebs.go = {
|
||
|
enable = true;
|
||
|
};
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
virtualHosts.go = {
|
||
|
locations."/".extraConfig = ''
|
||
|
proxy_set_header Host go.lassul.us;
|
||
|
proxy_pass http://localhost:1337;
|
||
|
'';
|
||
|
serverAliases = [
|
||
|
"go.lassul.us"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|