Skip to content

Commit

Permalink
munin-plugins-core: nginx_*: include ipv6 localhost in example config…
Browse files Browse the repository at this point in the history
…uration, thanks to Helmut Grohne. Closes: #1033734

Signed-off-by: Holger Levsen <[email protected]>
  • Loading branch information
h01ger committed Sep 23, 2023
1 parent 47517b3 commit 3b7c743
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/node.d/nginx_request
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ compiled, and secondly it must be configured like this:
server {
listen 127.0.0.1;
listen [::1];
server_name localhost;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}
Expand Down
2 changes: 2 additions & 0 deletions plugins/node.d/nginx_status
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ compiled, and secondly it must be configured like this:
server {
listen 127.0.0.1;
listen [::1];
server_name localhost;
location /nginx_status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}
Expand Down

0 comments on commit 3b7c743

Please sign in to comment.