Traefik在主机路由的末尾添加“ /”

时间:2019-07-07 17:19:29

标签: docker docker-compose traefik traefik-ingress

按照Quick Start using docker-compose设置Traefik。我想将我的应用程序托管在主机的根目录。在此示例中,主机是dockerhost。因此,在浏览器中,当我导航到http://dockerhost时,我希望能够查看react-app服务。我正在使用的标签是:

    labels:
      - "traefik.enable=true"
      - "traefik.port=3000"
      - "traefik.protocol=http"
      - "traefik.frontend.rule=Host:dockerhost;PathPrefixStrip:/"

我可以查看react应用,但是URL始终带有尾随/。即,当我导航到http://dockerhost时,它变成http://dockerhost/

有什么办法摆脱尾随的/

0 个答案:

没有答案