configuration.nix/hosts/bifrost/services/apps/acomputer.lol.nix

11 lines
208 B
Nix
Raw Normal View History

2024-09-14 19:55:57 +05:30
_:
2024-11-27 23:59:27 +05:30
let domainName = "acomputer.lol"; in {
2024-07-20 23:16:03 +05:30
services = {
2024-09-14 19:55:57 +05:30
caddy.virtualHosts."${domainName}" = {
2024-07-20 23:16:03 +05:30
extraConfig = ''
2024-11-27 23:59:27 +05:30
reverse_proxy /.well-known/matrix/* 10.10.10.13:6167
2024-07-20 23:16:03 +05:30
'';
};
};
}