mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-20 22:14:14 -05:00
9 lines
178 B
Nix
9 lines
178 B
Nix
{ inputs, ... }:
|
|
{
|
|
services.caddy = {
|
|
enable = true;
|
|
virtualHosts."chat.wanderingcrow.net".extraConfig = ''
|
|
reverse_proxy http://192.168.0.72:3000
|
|
'';
|
|
};
|
|
}
|