summary refs log tree commit diff
path: root/host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-04-04 17:28:55 +0200
committerRory& <root@rory.gay>2024-06-05 17:25:16 +0200
commitfde1a8dc87adbbc24d80cfb06973b4c01bf31121 (patch)
tree963c539bf9a89e9bdb5884250345cc0440d243c2 /host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix
parentNginx body size (diff)
downloadSpacebar-Open-Infrastructure-fde1a8dc87adbbc24d80cfb06973b4c01bf31121.tar.xz
Add monitoring with prometheus
Diffstat (limited to 'host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix')
-rwxr-xr-xhost/Spacebar-nginx/hosts/spacebar.chat/grafana.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix b/host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix
new file mode 100755
index 0000000..9aad5f5
--- /dev/null
+++ b/host/Spacebar-nginx/hosts/spacebar.chat/grafana.nix
@@ -0,0 +1,14 @@
+{
+  enableACME = true;
+  forceSSL = true;
+  locations = {
+    "/" = {
+      proxyPass = "http://192.168.99:3000";
+      proxyWebsockets = true;
+      extraConfig =
+        "proxy_ssl_server_name on;" +
+        "proxy_pass_header Authorization;"
+        ;
+    };
+  };
+}