From 8c4a6a3c23a7d0729a41342c1c714fbe2cec36ff Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Wed, 6 Nov 2024 00:00:51 -0600 Subject: [PATCH] Add katherineandchandler.com --- bert/services/http/index.nix | 1 + bert/services/http/katherineandchandler.com.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 bert/services/http/katherineandchandler.com.nix diff --git a/bert/services/http/index.nix b/bert/services/http/index.nix index 51e12c7..3054875 100644 --- a/bert/services/http/index.nix +++ b/bert/services/http/index.nix @@ -3,6 +3,7 @@ ./files.chandlerswift.com.nix ./git.chandlerswift.com.nix ./home.chandlerswift.com.nix + ./katherineandchandler.com.nix ./maps.chandlerswift.com.nix ./stjohnscccc.org.nix ./swiftgang.net.nix diff --git a/bert/services/http/katherineandchandler.com.nix b/bert/services/http/katherineandchandler.com.nix new file mode 100644 index 0000000..352cf32 --- /dev/null +++ b/bert/services/http/katherineandchandler.com.nix @@ -0,0 +1,14 @@ + +{ + services.caddy.virtualHosts."katherineandchandler.com".extraConfig = '' + encode zstd gzip + file_server + root * /srv/www/katherineandchandler.com + # hide .git # ??? + ''; + systemd.tmpfiles.settings."10-katherineandchandler-com" = { + "/srv/www/katherineandchandler.com" = { + d = {}; + }; + }; +}