- Introduces new modules for cloud, backup, and NFS services - Removes deprecated Caddy and cloudflared configs - Migrate /pool from SSHFS to NFS - Migrate filerun and SnapRAID configurations to cloud only for better modularity
13 lines
230 B
Nix
13 lines
230 B
Nix
{
|
|
services.caddy = {
|
|
enable = true;
|
|
virtualHosts = {
|
|
"cloudflared.ryot.foo" = {
|
|
useACMEHost = "ryot.foo";
|
|
extraConfig = ''
|
|
reverse_proxy localhost:14333
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|