fix(m3-atlas): remove netbird-only middleware from dashboard router #16
Reference in New Issue
Block a user
Delete Branch "fix/remove-netbird-middleware"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Removes the
netbird-onlyIP whitelist middleware from the hermes-dashboard Traefik router.Access control is handled at the DNS level:
dash.m3ta.devresolves to the Netbird mesh IP (100.81.142.56) which is a CGNAT address and unreachable from the public internet. The middleware was redundant and blocking legitimate mesh traffic.Changes:
netbird-onlymiddleware definitionmiddlewares = ["netbird-only"]from hermes-dashboard routerNote: DNS A-record for
dash.m3ta.devmust be set to100.81.142.56(m3-atlas Netbird IP) for this to work. TLS cert provisioning via GoDaddy DNS challenge is unaffected (uses TXT records).