From 5f4154982a617ee1efbf0457c6eb58cbcab9b404 Mon Sep 17 00:00:00 2001 From: Murtadha Date: Fri, 14 Nov 2025 12:15:55 -0500 Subject: [PATCH] v0.13.0 Allow nginx to share its metrics data for monitoring --- nginx.conf | 12 +++++++++++- version.txt | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 09905f1..1db31c5 100644 --- a/nginx.conf +++ b/nginx.conf @@ -15,5 +15,15 @@ http { index index.html; try_files $uri $uri/ /index.html; } + + location /nginx_status { + stub_status on; + access_log off; + + # adjust these to match where Prometheus / exporter lives + allow 127.0.0.1; # localhost + # allow 172.17.0.0/16; # example Docker bridge subnet + deny all; + } } -} \ No newline at end of file +} diff --git a/version.txt b/version.txt index dabff2f..54d1a4f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.12.6 +0.13.0