From 3e549515480d75452668c48a9789d1ba55230abb Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Sun, 22 Dec 2024 06:44:15 -0500 Subject: [PATCH] proxy webdav --- nixos/nginx.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/nixos/nginx.nix b/nixos/nginx.nix index f826101..761a049 100644 --- a/nixos/nginx.nix +++ b/nixos/nginx.nix @@ -110,6 +110,17 @@ ''; }; }; + + "webdav.philippeterson.com" = { + serverName = "webdav.philippeterson.com"; + enableACME = true; + onlySSL = true; + + locations."/" = { + proxyPass = "http://127.0.0.1:8082/"; # pass through to webdav + }; + }; + "forge.quinefoundation.com-https" = { serverName = "forge.quinefoundation.com"; enableACME = true;