From aab8691c7b44c27929a7a205f654412490285e03 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sun, 8 Feb 2026 23:27:01 -0600 Subject: [PATCH] Add nginx vhosts for location and photos with ACME and proxy --- hosts/oracle/o001/nginx.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/hosts/oracle/o001/nginx.nix b/hosts/oracle/o001/nginx.nix index 779d8d9d..7c84197e 100644 --- a/hosts/oracle/o001/nginx.nix +++ b/hosts/oracle/o001/nginx.nix @@ -255,6 +255,22 @@ in ''; }; }; + "location.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyWebsockets = true; + proxyPass = "http://100.64.0.13"; + }; + }; + "photos.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyWebsockets = true; + proxyPass = "http://100.64.0.13"; + }; + }; "llm.joshuabell.xyz" = { enableACME = true; forceSSL = true;