@cryptotaxi247 / infra-1 / commits / cffcbb87

delft/eris: remove trailing slash from Prometheus proxyPass

Luke Granger-Brown committed Nov 22, 2020 at 17:18 UTC cffcbb874bde78318f54e331768f0bd3ab269a60
1 file changed +1 -1
delft/eris.nix
+1 -1
@@ -45,7 +45,7 @@ in {
45 forceSSL = true;
46 root = ./eris/status-page;
47 locations."/grafana/".proxyPass = "http://${config.services.grafana.addr}:${toString config.services.grafana.port}/";
48 - locations."/prometheus".proxyPass = "http://${config.services.prometheus.listenAddress}:${toString config.services.prometheus.port}/";
48 + locations."/prometheus".proxyPass = "http://${config.services.prometheus.listenAddress}:${toString config.services.prometheus.port}";
49 };
50 };
51