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