Qdrant and traefik

Hello,

I would like to setup qdrant behind traefik

This is my qdrant settings:

services:
  qdrant_test:
    image: qdrant/qdrant:latest
    restart: always
    container_name: qdrant_test
    ports:
      - 6333:6333
      - 6334:6334
    configs:
      - source: qdrant_config
        target: /qdrant/config/production.yaml
    volumes:
      - ./qdrant_data:/qdrant/storage
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.qdrant.rule=Host(`qdrant.yourdomain.com`)"
      - "traefik.http.routers.qdrant.entrypoints=websecure"
      - "traefik.http.routers.qdrant.tls=true"
      - "traefik.http.routers.qdrant.tls.certresolver=myresolver"
      - "traefik.http.services.qdrant.loadbalancer.server.port=6333"
    networks:
      - traefik-test

configs:
  qdrant_config:
    content: |
      log_level: INFO
networks:
  traefik-test:
    external: true
volumes:
  traefik_data:
    external: true
  qdrant_data:
    external: true

I have similar config with 8n8 and it works fine on domain.
However i cant make this work.

url: https://qdrant.yourdomain.com/ show me

{
"title": "qdrant - vector search engine",
"version": "1.6.1"
}

I don`t see dashboard. and cant connect this in 8n8. Any erros you can spot in ?

What’s the issue? It seems Traefik is proxying/forwarding requests correctly to the target service. Maybe you need a different path? Or a different target port?