mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
18 lines
305 B
Nix
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
|
|
'';
|
|
};
|
|
};
|
|
|
|
}
|