15 lines
305 B
Nix
15 lines
305 B
Nix
|
|
||
|
{
|
||
|
services.caddy.virtualHosts."home.chandlerswift.com".extraConfig = ''
|
||
|
encode zstd gzip
|
||
|
file_server
|
||
|
root * /srv/home.chandlerswift.com
|
||
|
# hide .git # ???
|
||
|
'';
|
||
|
systemd.tmpfiles.settings."10-home-chandlerswift-com" = {
|
||
|
"/srv/home.chandlerswift.com" = {
|
||
|
d = {};
|
||
|
};
|
||
|
};
|
||
|
}
|