mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-01 07:26:05 +02:00
19 lines
267 B
Nix
19 lines
267 B
Nix
{
|
|
services.caddy = {
|
|
enable = true;
|
|
|
|
virtualHosts = {
|
|
"https://" = {
|
|
extraConfig = # Caddyfile
|
|
''
|
|
reverse_proxy :3000
|
|
|
|
tls internal {
|
|
on_demand
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|