Skip to content
Snippets Groups Projects
Commit 243f11fa authored by Florian Sesser's avatar Florian Sesser
Browse files

Use Nix to find VPN network IP

Thanks to @jcalderone for the suggestion!
parent 555264ed
No related branches found
No related tags found
2 merge requests!264merge develop into production,!242Grafana: Allow access to /metrics only to monitoring network and localhost
Pipeline #1686 passed
......@@ -187,7 +187,7 @@ in {
# Only allow our monitoringvpn subnet
# And localhost since we're the monitoring server currently
extraConfig = ''
allow 172.23.23.0/24;
allow ${config.grid.monitoringvpnIPv4}/24;
allow 127.0.0.1;
allow ::1;
deny all;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment