Torjus Håkestad
399c853f0c
Some checks failed
Run nix flake check / flake-check (push) Failing after 8m6s
19 lines
358 B
Nix
19 lines
358 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.caddy = {
|
|
enable = true;
|
|
configFile = pkgs.writeText "Caddyfile" ''
|
|
{
|
|
acme_ca https://ca.home.2rjus.net/acme/acme/directory
|
|
}
|
|
|
|
nix-cache.home.2rjus.net {
|
|
log {
|
|
output file /var/log/caddy/nix-cache.log
|
|
}
|
|
reverse_proxy http://localhost:5000
|
|
}
|
|
'';
|
|
};
|
|
}
|