This commit is contained in:
AlexBa16
2026-06-01 16:14:06 +02:00
parent a321ee6c30
commit 930a4ef124
+11
View File
@@ -65,5 +65,16 @@ http {
default_type text/plain;
return 200 "ok\n";
}
location /internal/status {
access_log off;
default_type text/plain;
if ($remote_addr != 127.0.0.1) {
return 403;
}
return 200 "internal ok\n";
}
}
}