setup snmpd

This commit is contained in:
rene
2022-03-11 14:06:05 +01:00
parent 2ff81b17ea
commit 3bd4f46ceb
6 changed files with 88 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
location /nginx-status {
stub_status on;
access_log off;
allow 127.0.0.1;
allow ::1;
deny all;
}
}