mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
10 lines
297 B
Nix
10 lines
297 B
Nix
{inputs, ...}: {
|
|
services.caddy = {
|
|
enable = true;
|
|
#@block not remote_ip ${inputs.nix-secrets.network.primary.publicIP} private_ranges 72.213.172.231
|
|
#abort @block
|
|
virtualHosts."chat.wanderingcrow.net".extraConfig = ''
|
|
reverse_proxy http://192.168.0.72:3000
|
|
'';
|
|
};
|
|
}
|