pushgateway

This commit is contained in:
Luj 2023-07-16 16:08:20 +02:00
parent 791d21b7c4
commit 66a14cc332
Signed by: luj
GPG key ID: 6FC74C847011FD83
9 changed files with 32 additions and 738 deletions

View file

@ -74,7 +74,7 @@
networking.firewall.checkReversePath = "loose";
services.nginx.enable = true;
luj.nginx.enable = true;
services.nginx.virtualHosts."vaults.malka.family" = {
forceSSL = true;
enableACME = true;

View file

@ -102,7 +102,8 @@
services.grafana.enable = true;
services.grafana.settings.server.http_port = 3000;
services.victoriametrics.enable = true;
services.prometheus.enable = true;
services.prometheus.pushgateway.enable = true;
services.nginx.virtualHosts."data.julienmalka.me" = {
forceSSL = true;
@ -118,10 +119,17 @@
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:8428";
proxyPass = "http://localhost:9090";
};
};
services.nginx.virtualHosts."push.julienmalka.me" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:9090";
};
};