mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
17 lines
368 B
Nix
17 lines
368 B
Nix
{ config, ... }:
|
|
let
|
|
domain = "cache.rfive.de";
|
|
in
|
|
{
|
|
age.secrets.cache = {
|
|
file = ../../../../secrets/nuc/cache.age;
|
|
};
|
|
services.nix-serve = {
|
|
enable = true;
|
|
secretKeyFile = config.age.secrets.cache.path;
|
|
};
|
|
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
|
reverse_proxy 127.0.0.1:${toString config.services.nix-serve.port}
|
|
'';
|
|
}
|