Traefik https重定向到后端端口而不是入口点443?

时间:2019-06-04 17:37:56

标签: docker apache2 traefik

使用https重定向时,我从traefik遇到一些令人费解的行为。

尝试访问http://dev.domain.com/admin将导致https重定向到后端端口,如下所示:https://dev.domain.com:1025/admin

在直接导航到https://dev.domain.com/admin时有效。

是什么原因造成的?

docker-compose.yml

version: '2.4'
networks:
  web:
    external: true
services:
  php:
    image: php:7.0.31-apache-stretch
    networks:
      - web
    labels:
     traefik.docker.network: web
     traefik.enable: true
     traefik.frontend.rule: Host:dev.domain.com
     traefik.port: 1025

traefik.toml

defaultEntryPoints = ["http","https"]
[entryPoints]
  [entryPoints.http]
  address = ":80"
    [entryPoints.http.redirect]
    entryPoint = "https"
  [entryPoints.https]
  address = ":443"
   [entryPoints.https.tls]

0 个答案:

没有答案