commit 8a7e45babf89a551c6dd7feaadfbaeda8d634d5e parent 317baacb1f121e56c4838ddc80994a8c971b2d2a Author: Silas Brack <silasbrack@gmail.com> Date: Sat, 13 Jun 2026 14:08:26 +0200 fix: revert logs vhost again (WireGuard not up before nginx) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Diffstat:
| M | modules/simple-web-app.nix | | | 9 | --------- |
1 file changed, 0 insertions(+), 9 deletions(-)
diff --git a/modules/simple-web-app.nix b/modules/simple-web-app.nix @@ -65,15 +65,6 @@ in }; }; - # Serve logs on VPN only — separate vhost on the WireGuard interface - systemd.services.nginx.after = [ "wireguard-wg0.service" ]; - services.nginx.virtualHosts."simple-web-app-logs" = { - listen = [{ addr = "10.100.0.1"; port = 9090; }]; - locations."/" = { - root = "/mnt/volume-hel1-1/simple-web-app/logs"; - extraConfig = "autoindex on;"; - }; - }; # Archive logs to volume systemd.services.simple-web-app-log-collection = {