add grafana

This commit is contained in:
stupidcomputer 2024-10-28 00:10:19 -05:00
parent 5aceed436c
commit 6aa7029818
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,13 @@
{ lib, config, pkgs, ...}:
{
services.grafana = {
settings = {
server = {
http_addr = "10.100.0.2";
http_port = 9802;
domain = "grafana.beepboop.systems";
};
};
};
}

View File

@ -0,0 +1,16 @@
{ lib, config, pkgs, ... }:
{
services.nginx.virtualHosts."grafana.beepboop.systems" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://10.100.0.2:9802";
proxyWebsockets = true;
extraConfig = ''
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_buffering off;
'';
};
};
}