hello world
i'm trying follow Traefik HTTP Middlewares IPAllowList - Traefik to limit client to a specific IP
labels that i use w/ my container:
$ grep -A8 labels docker-compose.yaml
labels:
- "traefik.docker.network=traefik_traefik"
- "traefik.enable=true"
- "traefik.http.middlewares.minio.ipallowlist.sourcerange=X.X.X.X"
- "traefik.http.routers.minio.rule=Host(`X.X.X`)"
- "traefik.http.routers.minio.entrypoints=websecure"
- "traefik.http.routers.minio.service=minio@docker"
- "traefik.http.routers.minio.tls.certresolver=myresolver"
- "traefik.http.services.minio.loadbalancer.server.port=9001"
$
yet I'm still able to access same resource using out of range IP address as well.
Please advise)
Thanks in advance!