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.
This commit is contained in:
Harald Hoyer 2025-11-27 15:30:54 +01:00
parent 40e677ea02
commit 6cb03a2c8f

View file

@ -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;
};
};
};
};
}