summary refs log tree commit diff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rwxr-xr-xhost/Spacebar-nginx/configuration.nix2
-rwxr-xr-xhost/Spacebar-nginx/hosts/thearcanebrony.net/matrix.nix14
2 files changed, 16 insertions, 0 deletions
diff --git a/host/Spacebar-nginx/configuration.nix b/host/Spacebar-nginx/configuration.nix
index b54a392..54884b9 100755
--- a/host/Spacebar-nginx/configuration.nix
+++ b/host/Spacebar-nginx/configuration.nix
@@ -25,6 +25,8 @@
       recommendedProxySettings = true;
       recommendedTlsSettings = true;
       virtualHosts = {
+        "matrix.thearcanebrony.net" = import ./hosts/thearcanebrony.net/matrix.nix;
+
         "mail.spacebar.chat" = import ./hosts/spacebar.chat/mail.nix;
 
         #local only
diff --git a/host/Spacebar-nginx/hosts/thearcanebrony.net/matrix.nix b/host/Spacebar-nginx/hosts/thearcanebrony.net/matrix.nix
new file mode 100755
index 0000000..d2b7606
--- /dev/null
+++ b/host/Spacebar-nginx/hosts/thearcanebrony.net/matrix.nix
@@ -0,0 +1,14 @@
+{
+  enableACME = true;
+  addSSL = true;
+  locations = {
+    "/" = {
+      proxyPass = "http://192.168.1.200:8008";
+      proxyWebsockets = true;
+      extraConfig =
+        "proxy_ssl_server_name on;" +
+        "proxy_pass_header Authorization;"
+        ;
+    };
+  };
+}