configuration.nix/hosts/rico2/services/if3.nix

17 lines
286 B
Nix
Raw Normal View History

2023-10-28 04:31:09 +05:30
{
config,
if3,
2023-10-28 04:32:52 +05:30
...
2023-10-28 04:31:09 +05:30
}: {
services.caddy.virtualHosts = {
"if3.adtya.xyz" = {
extraConfig = ''
root * ${if3.packages.${config.nixpkgs.system}.default}/share/web
encode gzip
try_files {path} /index.html
file_server
'';
};
};
}