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

36 lines
1 KiB
Nix
Raw Normal View History

2024-07-20 23:16:03 +05:30
_: {
services = {
caddy.virtualHosts."acomputer.lol" = {
extraConfig = ''
handle /.well-known/matrix/server {
header Content-Type application/json
header Access-Control-Allow-Origin *
respond `{"m.server": "matrix.acomputer.lol:443"}`
}
handle /.well-known/matrix/client {
header Content-Type application/json
header Access-Control-Allow-Origin *
2024-09-14 12:41:59 +05:30
respond `{"m.homeserver": {"base_url": "https://matrix.acomputer.lol:443"}, "org.matrix.msc3575.proxy": {"url": "https://matrix.acomputer.lol"}}`
2024-07-20 23:16:03 +05:30
}
'';
};
frp.settings.proxies = [
{
name = "http.acomputer.lol";
type = "http";
customDomains = [ "acomputer.lol" ];
localPort = 80;
transport.useCompression = true;
}
{
name = "https.acomputer.lol";
type = "https";
customDomains = [ "acomputer.lol" ];
localPort = 443;
transport.useCompression = true;
}
];
};
}