From c82ca654d135e025fc6128fac5a8e1af20dc87dd Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sat, 7 Feb 2026 17:44:31 -0600 Subject: [PATCH] Add etebase A record and nginx vhost with ACME and proxy_pass --- hosts/linode/l001/headscale.nix | 1 + hosts/oracle/o001/nginx.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/hosts/linode/l001/headscale.nix b/hosts/linode/l001/headscale.nix index 6955cb5e..b16d918a 100644 --- a/hosts/linode/l001/headscale.nix +++ b/hosts/linode/l001/headscale.nix @@ -47,6 +47,7 @@ (h001ARecord "gist") (h001ARecord "git") (h001ARecord "blog") + (h001ARecord "etebase") ]; }; }; diff --git a/hosts/oracle/o001/nginx.nix b/hosts/oracle/o001/nginx.nix index f2eafcae..779d8d9d 100644 --- a/hosts/oracle/o001/nginx.nix +++ b/hosts/oracle/o001/nginx.nix @@ -244,6 +244,17 @@ in proxyPass = "http://100.64.0.13"; }; }; + "etebase.joshuabell.xyz" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyWebsockets = true; + proxyPass = "http://100.64.0.13"; + extraConfig = '' + client_max_body_size 75M; + ''; + }; + }; "llm.joshuabell.xyz" = { enableACME = true; forceSSL = true;