1
0
Fork 0
dotfiles/system/nixos/home-proxy.nix
2023-04-09 02:11:14 +02:00

19 lines
476 B
Nix

{ pkgs, config, secret, ... }:
{
services.nginx.streamConfig = ''
resolver 1.1.1.1 ipv6=off;
upstream home {
server ${secret.nginx.upstream.home.hostname}:${builtins.toString(secret.nginx.upstream.home.port)};
}
server {
listen ${builtins.toString(secret.nginx.upstream.home.port)};
proxy_protocol on;
proxy_pass home;
}
'';
networking.firewall.interfaces."enp1s0".allowedTCPPorts = [ secret.nginx.upstream.home.port ];
}