Skip to content

Commit

Permalink
modules (grafana): Don't export internal grafana port
Browse files Browse the repository at this point in the history
Grafana is exposed via nginx proxying, so no need to expose grafana's
default port as well.
  • Loading branch information
britter committed Jun 28, 2024
1 parent 6fcbdb6 commit 988dae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/nixos/grafana/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in {

networking = {
firewall = {
allowedTCPPorts = [80 443 config.services.grafana.settings.server.http_port];
allowedTCPPorts = [80 443];
};
};

Expand Down

0 comments on commit 988dae8

Please sign in to comment.