From 7e483f15b07aa746a53ddbffa3d92634dfc3c62b Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Fri, 20 Dec 2024 06:59:51 -0500 Subject: [PATCH] wip --- nixos/nginx.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos/nginx.nix b/nixos/nginx.nix index 8caaba8..34a0972 100644 --- a/nixos/nginx.nix +++ b/nixos/nginx.nix @@ -110,7 +110,8 @@ ''; }; }; - "forge.quinefoundation.com" = { + "forge.quinefoundation.com-https" = { + serverName = [ "forge.quinefoundation.com" ]; enableACME = true; listen = [ @@ -122,7 +123,9 @@ proxyPass = "http://127.0.0.1:3000/"; # pass through to Forgejo }; }; - "forge.quinefoundation.com" = { + "forge.quinefoundation.com-http" = { + serverName = [ "forge.quinefoundation.com" ]; + listen = [ { addr = "0.0.0.0"; port = 80; } { addr = "[::]"; port = 80; }