This commit is contained in:
Hadi 2024-06-19 23:28:50 +02:00
parent c852176e0d
commit 0e291d3388

View File

@ -16,7 +16,7 @@ in {
}; };
services.nginx.virtualHosts.${hostname} = { services.nginx.virtualHosts.${hostname} = {
enableACME = true; enableACME = true;
locations."/" = { proxyPass = "http://127.0.0.1:${port}"; }; locations."/" = { proxyPass = "http://127.0.0.1:${toString port}"; };
}; };
networking.firewall.allowedTCPPorts = [ port ]; networking.firewall.allowedTCPPorts = [ port ];
} }