From e3f146ddbaa25c5582b9f883ecbe91ae33561cb5 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Tue, 16 Sep 2025 16:14:26 -0300 Subject: [PATCH] feat: force nginx to be disabled --- common/caddy.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/caddy.nix b/common/caddy.nix index 7616fb6..e54e873 100644 --- a/common/caddy.nix +++ b/common/caddy.nix @@ -1,6 +1,9 @@ {...}: { services.caddy.enable = true; + # Some services try to enable nginx as their reverse proxy + services.nginx.enable = false; + # Caddy Ports networking.firewall.allowedTCPPorts = [80 433]; }