🔧 cleanup matrix config

This commit is contained in:
2025-07-01 15:14:13 -04:00
parent a507412e0e
commit 7cec56a95e
3 changed files with 21 additions and 17 deletions

View File

@ -55,6 +55,7 @@ _:
"bruno"
"bunch"
"calibre"
"claude"
"discord"
"docker-desktop"
"dracula-xcode"

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
_:
{
services.nginx = {
@ -7,7 +7,10 @@
"matrix.walkah.chat" = {
forceSSL = true;
enableACME = true;
locations."/" = {
locations."/_matrix" = {
proxyPass = "http://100.111.208.75:8008";
};
locations."/_synapse/client" = {
proxyPass = "http://100.111.208.75:8008";
};
};
@ -51,9 +54,9 @@
add_header Access-Control-Allow-Origin *;
return 200 '${builtins.toJSON client}';
'';
"/" = {
root = pkgs.element-web;
};
# "/" = {
# root = pkgs.element-web;
# };
};
};
};