From 7b56869d2716617baf260842336c7cc830c1da96 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Mon, 23 Jun 2025 10:28:49 -0500 Subject: [PATCH] add jelly and media --- hosts/oracle/o001/nginx.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hosts/oracle/o001/nginx.nix b/hosts/oracle/o001/nginx.nix index cc634d9..b780bff 100644 --- a/hosts/oracle/o001/nginx.nix +++ b/hosts/oracle/o001/nginx.nix @@ -148,6 +148,21 @@ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ''; }; + "jellyfin.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://100.64.0.13"; + }; + }; + "media.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://100.64.0.13"; + }; + }; + "_" = { default = true;