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 = {}; + }; + }; +}