From 6f7db2c33636ec565d94ac9ccf19ea09b57b1df7 Mon Sep 17 00:00:00 2001 From: Jo Date: Tue, 8 Oct 2024 16:32:07 +0000 Subject: [PATCH] Added matrix.nederland.gay --- services/default.nix | 1 + services/matrix.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 services/matrix.nix diff --git a/services/default.nix b/services/default.nix index 702ed34..b89c18c 100644 --- a/services/default.nix +++ b/services/default.nix @@ -9,6 +9,7 @@ ./iceshrimp.nix ./akkoma.nix ./akkoma-media.nix + ./matrix.nix ./trackmap.nix ]; } diff --git a/services/matrix.nix b/services/matrix.nix new file mode 100644 index 0000000..15476cb --- /dev/null +++ b/services/matrix.nix @@ -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;" + ; + }; + }; +}