Merge pull request 'fix: rename ipWhiteList to ipAllowList for Traefik v3 (#103)' (#104) from issue-103-fix-grafana-ipwhitelist into main
All checks were successful
Deploy to Staging / Build Images (push) Successful in 4m22s
Deploy to Staging / Deploy to Staging (push) Successful in 52s
Deploy to Staging / Verify Staging (push) Successful in 2m41s
Deploy to Staging / Notify Staging Ready (push) Successful in 7s
Deploy to Staging / Notify Staging Failure (push) Has been skipped

Reviewed-on: #104
This commit was merged in pull request #104.
This commit is contained in:
2026-02-06 03:21:47 +00:00
2 changed files with 2 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
http:
middlewares:
grafana-ipwhitelist:
ipWhiteList:
ipAllowList:
sourceRange:
- "10.0.0.0/8"
- "172.16.0.0/12"

View File

@@ -1,16 +1,5 @@
http:
middlewares:
# Request ID forwarding middleware
# Note: Traefik v3 lacks native UUID generation
# Backend generates X-Request-Id if not present in request
# This middleware ensures the header is forwarded when present
request-id:
headers:
customRequestHeaders:
X-Forwarded-Host: "{{ .Request.Host }}"
# X-Request-Id forwarded automatically via passthrough
# Backend responsibility: generate UUID if header missing
# Security headers middleware
secure-headers:
headers:
@@ -96,7 +85,7 @@ http:
# IP whitelist for development (optional)
local-ips:
ipWhiteList:
ipAllowList:
sourceRange:
- "127.0.0.1/32"
- "10.0.0.0/8"