From 0cada5aa45f6ee8bf8463af15022307c9b2ddb40 Mon Sep 17 00:00:00 2001 From: Martin Eckardt Date: Sun, 28 Dec 2025 18:27:16 +0100 Subject: [PATCH] Enable Basic Auth for Netdata monitoring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Activated auth_basic in nginx config for eckardt-monitoring.duckdns.org - htpasswd file at C:/nginx/conf/.htpasswd 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- configs/nginx/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/nginx/nginx.conf b/configs/nginx/nginx.conf index 153c822..b4969e5 100644 --- a/configs/nginx/nginx.conf +++ b/configs/nginx/nginx.conf @@ -202,9 +202,9 @@ http { ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256; ssl_prefer_server_ciphers off; - # HTTP Basic Auth (empfohlen da Netdata keine Auth hat) - # auth_basic "Netdata Monitoring"; - # auth_basic_user_file C:/nginx/conf/.htpasswd; + # HTTP Basic Auth + auth_basic "Netdata Monitoring"; + auth_basic_user_file C:/nginx/conf/.htpasswd; location / { limit_req zone=general burst=50 nodelay;