From 31bb508d8f34198d1aac8c77fe389eae2f6a3578 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Mon, 25 May 2026 23:13:54 -0800 Subject: [PATCH] wip --- nixos/linux.nix | 8 ++++++++ nixos/nginx.nix | 10 ++++++++++ 2 files changed, 18 insertions(+) diff --git a/nixos/linux.nix b/nixos/linux.nix index 76e5284..4ae7cb8 100644 --- a/nixos/linux.nix +++ b/nixos/linux.nix @@ -296,6 +296,14 @@ in { ports = ["3010:8080"]; }; + "hyper-quineglobal-com" = { + autoStart = true; + image = "forge.quinefoundation.com/ironmagma/hyper-quineglobal-com"; + volumes = []; + environment = {}; + ports = ["3013:8080"]; + }; + "coldairnetworks" = { autoStart = true; image = "quineglobal/coldairnetworks-com:latest"; diff --git a/nixos/nginx.nix b/nixos/nginx.nix index 3a7bafb..c704045 100644 --- a/nixos/nginx.nix +++ b/nixos/nginx.nix @@ -147,6 +147,16 @@ proxyPass = "http://127.0.0.1:3010/"; # pass through to docker container }; }; + + "hyper.quineglobal.com" = { + enableACME = false; + forceSSL = false; + addSSL = false; + + locations."/" = { + proxyPass = "http://127.0.0.1:3013/"; + }; + }; "riverside.coldairnetworks.com" = { enableACME = true; forceSSL = true;