From 6cb03a2c8f8db14948ee1156a0166940cc642e5c Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 27 Nov 2025 15:30:54 +0100 Subject: [PATCH] chore(nix): add reverse proxy for home.hoyer.world - Configured reverse proxy in `nginx.nix` for `home.hoyer.world`. - Disabled ACME and redirected to `internal.hoyer.world` with forced SSL. --- systems/x86_64-linux/sgx/nginx.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/systems/x86_64-linux/sgx/nginx.nix b/systems/x86_64-linux/sgx/nginx.nix index 86b7b9a..6a336db 100644 --- a/systems/x86_64-linux/sgx/nginx.nix +++ b/systems/x86_64-linux/sgx/nginx.nix @@ -37,6 +37,15 @@ recommendedProxySettings = true; }; }; + "home.hoyer.world" = { + enableACME = false; + useACMEHost = "internal.hoyer.world"; + forceSSL = true; + locations."/" = { + proxyPass = "http://192.168.178.49:8123"; + recommendedProxySettings = true; + }; + }; }; }; }