Files
dotfiles/systems/jeeves/services/haproxy.nix

8 lines
149 B
Nix

{
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.haproxy = {
enable = true;
config = builtins.readFile ./haproxy.cfg;
};
}