nix-config/hosts/sisyphe/features/caddy.nix
2024-12-23 14:39:18 +01:00

18 lines
305 B
Nix

{ config, lib, ... }:
{
services.caddy = {
enable = true;
virtualHosts = {
"http://fish.hypervirtual.world".extraConfig = ''
reverse_proxy :3030
'';
"http://mc.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :8443
'';
};
};
}