fix ooye somewhat
Some checks failed
Eval nix flake / evals (push) Failing after 25s

This commit is contained in:
2025-06-22 19:00:50 +02:00
parent 4fa544b430
commit 195163fd7b
2 changed files with 6 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ in
services.matrix-ooye = {
enable = true;
homeserver = "https://matrix.pvv.ntnu.no";
homeserverName = "matrix.pvv.ntnu.no";
homeserverName = "pvv.ntnu.no";
discordTokenPath = config.sops.secrets."matrix/ooye/discord_token".path;
discordClientSecretPath = config.sops.secrets."matrix/ooye/discord_client_secret".path;
bridgeOrigin = "https://ooye.pvv.ntnu.no";
@@ -59,6 +59,8 @@ in
};
services.nginx.virtualHosts."ooye.pvv.ntnu.no" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:${cfg.socket}";
};
}