From 6a511784a68efe852ff2b2d9c52c4b8a1234321c Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Fri, 4 Jul 2025 17:09:32 -0500 Subject: [PATCH 1/2] bert: Add darylfanclub.chandlerswift.com --- .../http/darylfanclub.chandlerswift.com.nix | 18 ++++++++++++++++++ bert/services/http/index.nix | 1 + 2 files changed, 19 insertions(+) create mode 100644 bert/services/http/darylfanclub.chandlerswift.com.nix diff --git a/bert/services/http/darylfanclub.chandlerswift.com.nix b/bert/services/http/darylfanclub.chandlerswift.com.nix new file mode 100644 index 0000000..f5be051 --- /dev/null +++ b/bert/services/http/darylfanclub.chandlerswift.com.nix @@ -0,0 +1,18 @@ + +{ + services.caddy.virtualHosts."darylfanclub.chandlerswift.com" = { + extraConfig = '' + encode zstd gzip + file_server + root * /srv/www/darylfanclub.chandlerswift.com + handle_errors { + respond "{err.status_code} {err.status_text}" + } + ''; + }; + systemd.tmpfiles.settings."10-darylfanclub-chandlerswift-com" = { + "/srv/www/darylfanclub.chandlerswift.com" = { + d = {}; + }; + }; +} diff --git a/bert/services/http/index.nix b/bert/services/http/index.nix index 22f8782..6dd6675 100644 --- a/bert/services/http/index.nix +++ b/bert/services/http/index.nix @@ -3,6 +3,7 @@ ./0hats.com.nix ./bannergen.chandlerswift.com.nix ./chandlerswift.com.nix + ./darylfanclub.chandlerswift.com.nix ./files.chandlerswift.com.nix ./git.chandlerswift.com.nix ./harborpaperco.com.nix From ed7d2374d8550a0486b91ae904abe1d26ed113eb Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Fri, 4 Jul 2025 17:10:05 -0500 Subject: [PATCH 2/2] bert: Add flintlock.chandlerswift.com --- .../http/flintlock.chandlerswift.com.nix | 19 +++++++++++++++++++ bert/services/http/index.nix | 1 + 2 files changed, 20 insertions(+) create mode 100644 bert/services/http/flintlock.chandlerswift.com.nix diff --git a/bert/services/http/flintlock.chandlerswift.com.nix b/bert/services/http/flintlock.chandlerswift.com.nix new file mode 100644 index 0000000..e4a66ad --- /dev/null +++ b/bert/services/http/flintlock.chandlerswift.com.nix @@ -0,0 +1,19 @@ + +{ + services.caddy.virtualHosts."flintlock.chandlerswift.com" = { + serverAliases = ["flintlock.isaacswift.com" "www.flintlock.chandlerswift.com" "www.flintlock.isaacswift.com"]; + extraConfig = '' + encode zstd gzip + file_server + root * /srv/www/flintlock.chandlerswift.com + handle_errors { + respond "{err.status_code} {err.status_text}" + } + ''; + }; + systemd.tmpfiles.settings."10-flintlock-chandlerswift-com" = { + "/srv/www/flintlock.chandlerswift.com" = { + d = {}; + }; + }; +} diff --git a/bert/services/http/index.nix b/bert/services/http/index.nix index 6dd6675..d007307 100644 --- a/bert/services/http/index.nix +++ b/bert/services/http/index.nix @@ -4,6 +4,7 @@ ./bannergen.chandlerswift.com.nix ./chandlerswift.com.nix ./darylfanclub.chandlerswift.com.nix + ./flintlock.chandlerswift.com.nix ./files.chandlerswift.com.nix ./git.chandlerswift.com.nix ./harborpaperco.com.nix