Added matrix.nederland.gay

Main
Jo 2024-10-08 16:32:07 +00:00 committed by hermitcollective.net
parent 14265fb238
commit 6f7db2c336
2 changed files with 18 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./iceshrimp.nix ./iceshrimp.nix
./akkoma.nix ./akkoma.nix
./akkoma-media.nix ./akkoma-media.nix
./matrix.nix
./trackmap.nix ./trackmap.nix
]; ];
} }

17
services/matrix.nix Normal file
View File

@ -0,0 +1,17 @@
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."matrix.nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243/";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
}