Redirect port if access spesific path

Hi,

I have a problem after install bitwarden over traefik, if i access path like /events, /notifications, /icons, /attachments, /api will redirect to port 8080 (ex: http://bitwarden.domain:8080/events/).

this is my config in the docker-compose.override.yml

version: '3'

services:
  nginx:
    labels:
      - traefik.docker.network=web
      - traefik.http.routers.bw.middlewares=bw
      - traefik.http.routers.bw.rule=Host(`bitwarden.domain`)
      - traefik.http.routers.bw.tls.certresolver=le
      - traefik.http.services.bw.loadbalancer.server.port=8080
      - traefik.http.middlewares.bw.headers.stsSeconds=315360000
      - traefik.http.middlewares.bw.headers.stsIncludeSubdomains=true
      - traefik.http.middlewares.bw.headers.stsPreload=true   

    networks:
      - web

networks:
  web:
    external: true

Has anyone in here ever had a problem like this ?

Thanks.