15 lines
321 B
Nix
15 lines
321 B
Nix
|
|
||
|
{
|
||
|
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 = {};
|
||
|
};
|
||
|
};
|
||
|
}
|