From eba08dc98475fe6ea95467aaf7c9828eb622ff23 Mon Sep 17 00:00:00 2001 From: Mork Swork Date: Sun, 15 Feb 2026 21:51:07 -0800 Subject: [PATCH] Add pdxdestiny.com --- nixos/nginx.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/nixos/nginx.nix b/nixos/nginx.nix index 0d36868..45e8443 100644 --- a/nixos/nginx.nix +++ b/nixos/nginx.nix @@ -20,6 +20,27 @@ ''; }; + "pdxdestiny.com" = { + enableACME = true; # Enable Let's Encrypt certificate for HTTPS + forceSSL = false; # Redirect HTTP to HTTPS? + addSSL = true; + root = "/dev/null"; + locations."/" = { + extraConfig = '' + default_type text/html; + return 200 ' + + + Hello World + + +

Hello World!

+

Welcome to pdxdestiny.com

+ + '; + ''; + }; + }; "fbksdigital.com" = { enableACME = true; # Enable Let's Encrypt certificate for HTTPS forceSSL = false; # Redirect HTTP to HTTPS?