moved haproxy to a service

This commit is contained in:
2025-02-02 22:52:57 -05:00
parent f691015920
commit d3aa49f9e4
8 changed files with 34 additions and 40 deletions

View File

@@ -0,0 +1,8 @@
{
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.haproxy = {
enable = true;
config = builtins.readFile ./haproxy.cfg;
};
}