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