configuration.nix/hosts/bifrost/services/apps/acomputer.lol.nix
2024-11-27 23:59:27 +05:30

10 lines
208 B
Nix

_:
let domainName = "acomputer.lol"; in {
services = {
caddy.virtualHosts."${domainName}" = {
extraConfig = ''
reverse_proxy /.well-known/matrix/* 10.10.10.13:6167
'';
};
};
}