nix-configurations/hosts/lkk-nix-1/services/caddy.nix

14 lines
268 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{
services.caddy = {
enable = true;
extraConfig = ''
code.lanakk.com {
reverse_proxy localhost:3000
tls {
issuer zerossl
}
}
'';
};
}