We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4701d7b commit 09932c7Copy full SHA for 09932c7
lgtm-stack/terraform/values/loki-values.yaml
@@ -168,10 +168,21 @@ gateway:
168
access_log /dev/stderr main;
169
server {
170
listen 8080;
171
+
172
+ # Health check path (must be open for k8s probes)
173
+ location = / {
174
+ return 200 'OK';
175
+ auth_basic off;
176
+ }
177
178
+ # Readiness and push paths (no auth needed for readiness/push)
179
location ~ ^/(loki/api/v1/push|loki/api/v1/tail|ready|log) {
180
proxy_pass http://monitoring-loki-distributor.observability.svc.cluster.local:3100;
181
proxy_http_version 1.1;
182
183
}
184
185
+ # Read path (BasicAuth required)
186
location / {
187
auth_basic "Loki Tenant Authentication";
188
auth_basic_user_file /etc/nginx/secrets/.htpasswd;
0 commit comments