Using Traefik as tcp proxy outside docker

I configure Traefix as TCP proxy, but It doesn't work for me. The configuration as below:

traefik.toml

[log]
  level = "debug"
  format = "common"


[entryPoints]
  [entryPoints.aq_proxy]
    address = ":6388/tcp"
  [entryPoints.traefik]
    address = ":8081"


[provider.file]
  file = "./dynamic_conf.toml"
  watch = true


[api]
  dashboard = true
  insecure = true

[ping]

dynamic_conf.toml

[tcp]
  [tcp.routers]
    [tcp.routers.aq_router]
      rule = "HostSNI(`*`)"
      service = "aq_service"
    [tcp.routers.aq_router.tls]
  [tcp.services]
    [tcp.services.aq_service.loadBalancer]
      [[tcp.services.aq_service.loadBalancer.servers]]
         address = "127.0.0.1:6379/"

[http.routers]
  [http.routers.my-api]
    rule = "Host(`traefik.example.com`)"
    service = "api@internal"
    middlewares = ["auth"]