diff options
author | makefu <github@syntax-fehler.de> | 2019-07-20 00:10:16 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2019-07-20 00:10:16 +0200 |
commit | 91833c560a2656d39bda5f87c0c4786670e2fc1f (patch) | |
tree | dcc6b741c134cec61117019330807ed5a13d167c | |
parent | c929afa9f3513eb457aa72762514ccfd3407dcb7 (diff) |
shack/prometheus: remove legacy config
-rw-r--r-- | krebs/2configs/shack/mqtt.nix | 1 | ||||
-rw-r--r-- | krebs/2configs/shack/prometheus/server.nix | 11 |
2 files changed, 9 insertions, 3 deletions
diff --git a/krebs/2configs/shack/mqtt.nix b/krebs/2configs/shack/mqtt.nix index 8e5438db2..e78f0f974 100644 --- a/krebs/2configs/shack/mqtt.nix +++ b/krebs/2configs/shack/mqtt.nix @@ -1,3 +1,4 @@ +# hostname: mqtt.shack { networking.firewall.allowedTCPPorts = [ 1883 ]; networking.firewall.allowedUDPPorts = [ 1883 ]; diff --git a/krebs/2configs/shack/prometheus/server.nix b/krebs/2configs/shack/prometheus/server.nix index c936f2531..93af88fad 100644 --- a/krebs/2configs/shack/prometheus/server.nix +++ b/krebs/2configs/shack/prometheus/server.nix @@ -3,14 +3,19 @@ { networking = { firewall.allowedTCPPorts = [ - 3000 # grafana 9090 # prometheus 9093 # alertmanager ]; - useDHCP = true; }; - services = { + nginx.virtualHosts = { + "prometheus.shack" = { + locations."/".proxyPass = "http://localhost:9090"; + }; + "alert.prometheus.shack" = { + locations."/".proxyPass = "http://localhost:9093"; + }; + }; prometheus = { enable = true; extraFlags = [ |