nix-config/hosts/sisyphe/features/caddy.nix

18 lines
305 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
services.caddy = {
enable = true;
virtualHosts = {
"http://fish.hypervirtual.world".extraConfig = ''
reverse_proxy :3030
'';
2024-08-26 10:11:13 +02:00
"http://mc.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :8443
2024-08-18 16:03:04 +02:00
'';
};
};
}