14 lines
287 B
Nix
14 lines
287 B
Nix
|
|
{
|
|
services.caddy.virtualHosts."files.chandlerswift.com".extraConfig = ''
|
|
encode zstd gzip
|
|
file_server
|
|
root * /srv/files.chandlerswift.com
|
|
'';
|
|
systemd.tmpfiles.settings."10-files-chandlerswift-com" = {
|
|
"/srv/files.chandlerswift.com" = {
|
|
d = {};
|
|
};
|
|
};
|
|
}
|