」 feat: added nginx exporter

This commit is contained in:
2025-07-22 16:38:11 +02:00
parent 1a1555f0c1
commit 4de9a323e4
8 changed files with 30 additions and 3 deletions

View File

@ -39,3 +39,10 @@ server {
server_name example.com;
return 301 https://$host$request_uri;
}
server {
listen 8080;
location /nginx_status {
stub_status;
}
}