Unable to access external proxied website from Internet

Hello,

I have set up a Traefik Docker container and use it as reverse proxy to access LAN websites. Some in Docker containers, and others as external websites in another LAN.

I can access these websites without problem with routers in a config.yml file.

I want to be able to access some of these external websites from Internet, so I remove the ipWhiteList middleware from these websites, but I can't access them from Internet.

When trying to access it from Internet, I type the http address "sub.domain.com", I see the address redirected to https and obtain the error:

The page is not correctly redirected

When I ping "sub.domain.com" from Internet, I only receive an answer from my domain DNS manager, but I am sure my A and CNAME DNS entries are correct. There is no https rewriting rules in my DNS manager.

Here is my config.yml file:

http:
  routers:
    extweb:
      entryPoints:
        - "https"
      rule: "Host(`extweb.domain.com`)"
      middlewares:
        - https-redirectscheme
        - default-headers
      tls: {}
      service: extweb

  services:
    extweb:
      loadBalancer:
        servers:
          - url: "https://192.168.0.10:5001"
        passHostHeader: true

  middlewares:
    https-redirectscheme:
      redirectScheme:
        scheme: https
        permanent: true

    default-headers:
      headers:
        frameDeny: true
        browserXssFilter: true
        contentTypeNosniff: true
        forceSTSHeader: true
        stsIncludeSubdomains: true
        stsPreload: true
        stsSeconds: 15552000
        customFrameOptionsValue: SAMEORIGIN
        customRequestHeaders:
          X-Forwarded-Proto: https

Thanks for your help!

Where are your entrypoints defined? I only see a https used with a redirect to https, which seems circular.

I would enable debug log and access log to be able to see incoming requests.

Hi bluepuma, thank you for your answer.

Here is my docker-compose.yml:

version: '3'

services:
  traefik:
    image: traefik:latest
    container_name: traefik
    restart: unless-stopped
    security_opt:
      - no-new-privileges:true
    networks:
      - proxy
    ports:
      - 80:80
      - 443:443
    environment:
      - CF_API_EMAIL=my_cf_account@email.com
      - CF_DNS_API_TOKEN=my_cf_api_token
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /var/run/docker.sock:/var/run/docker.sock:ro
      - /home/user/traefik/data/traefik.yml:/traefik.yml:ro
      - /home/user/traefik/data/acme.json:/acme.json
      - /home/user/traefik/data/config.yml:/config.yml:ro
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.traefik.entrypoints=http"
      - "traefik.http.routers.traefik.rule=Host(`traefik.domain.com`)"
      - "traefik.http.middlewares.traefik-auth.basicauth.users=traefik-user-name:password_hashed"
      - "traefik.http.middlewares.traefik-https-redirect.redirectscheme.scheme=https"
      - "traefik.http.middlewares.sslheader.headers.customrequestheaders.X-Forwarded-Proto=https"
      - "traefik.http.routers.traefik.middlewares=traefik-https-redirect"
      - "traefik.http.routers.traefik-secure.entrypoints=https"
      - "traefik.http.routers.traefik-secure.rule=Host(`traefik.domain.com`)"
      - "traefik.http.routers.traefik-secure.middlewares=traefik-auth"
      - "traefik.http.routers.traefik-secure.tls=true"
      - "traefik.http.routers.traefik-secure.tls.certresolver=cloudflare"
      - "traefik.http.routers.traefik-secure.tls.domains[0].main=domain.com"
      - "traefik.http.routers.traefik-secure.tls.domains[0].sans=*.domain.com"
      - "traefik.http.routers.traefik-secure.service=api@internal"

networks:
  proxy:
    external: true

And my traefik.yml:

api:
  dashboard: true
  debug: true
entryPoints:
  http:
    address: ":80"
    http:
      redirections:
        entryPoint:
          to: https
          scheme: https
  https:
    address: ":443"
serversTransport:
  insecureSkipVerify: true
providers:
  docker:
    endpoint: "unix:///var/run/docker.sock"
    exposedByDefault: false
  file:
    filename: /config.yml
certificatesResolvers:
  cloudflare:
    acme:
      email: my_cf_account@email.com
      storage: acme.json
      dnsChallenge:
        provider: cloudflare
        resolvers:
          - "1.1.1.1:53"
          - "1.0.0.1:53"

I will enable more logs and look into it.

Is this even working? I think you need something like command: --configFile=/traefik.yml for Traefik to load your static config from root.

My apologies, I have modified the file too much before posting. I use Docker rootless, and my volume for docker.sock is:

- /run/user/<MY_DOCKER_USER_ID>/docker.sock:/var/run/docker.sock:ro

So, my "user" in "/home/user/traefik/data/..." is "MY_DOCKER_USER".

This configuration is working, I have no error with "docker compose logs -f" and I can access to all my containers from my LAN in https with their FQDN and a Let's Encrypt certificate. Same to access my "external" websites located on another LAN through Traefik (connected to the same firewall/router).
Example: Docker on a Debian VM in 192.168.10.0/24 network, and "external" websites in 192.168.20.0/24 network.

The only problem is from Internet (ports 80 and 443 TCP forwarded to Traefik), to access to my "external" websites proxified in Traefik. Something in the redirections seems to be incorrect, but everything is working in my different LAN.

Hi bluepuma,

I have enabled debug log and access log.
At first, with level error log, I had no log, so I have enabled the debug level, but nothing seems abnormal. There is only the creation and setting up of all my configuration, the routes added, etc.

In the access log, all seems irrelevant. I can't identify incoming requests.

access.log (trunkated a little to fit the max characters post size):

172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 1 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:20 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 2 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 3 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:25 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 4 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 5 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:30 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 6 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 7 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:35 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 8 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 9 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:40 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 10 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 11 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:45 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 12 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 13 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:50 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 14 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 15 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:55 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 16 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:44:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 17 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:00 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 18 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 19 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:05 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 20 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 21 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:10 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 22 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 23 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:15 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 24 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 25 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 26 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 27 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:16 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 28 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 29 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:17 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 30 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:17 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 31 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 63 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 64 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:20 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 65 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 66 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 67 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:21 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 78 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:21 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 79 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 80 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:22 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 81 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:22 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 82 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:22 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 88 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:22 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 89 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:25 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 90 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:26 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 91 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:26 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 92 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:26 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 93 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:26 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 94 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:26 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 95 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 96 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:27 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 97 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:27 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 98 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:29 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 111 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:29 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 112 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:31 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 113 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 114 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:36 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 115 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:37 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 116 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:41 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 117 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:42 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 118 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:43 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 119 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:43 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 120 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:46 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 138 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:46 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 139 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:46 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 140 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:46 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 141 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:46 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 142 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:47 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 151 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:47 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 152 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:47 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 153 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:47 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 154 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:47 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 155 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:49 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 181 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:49 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 182 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:51 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 183 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:52 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 184 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:53 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 185 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:53 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 186 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:45:56 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 203 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:56 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 204 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:56 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 205 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:45:56 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 206 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:45:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 207 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:01 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 208 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:02 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 209 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:06 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 210 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:07 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 211 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:11 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 212 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:12 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 213 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:16 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 214 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:17 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 215 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:21 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 216 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:22 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 217 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:26 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 218 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:27 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 219 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:31 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 220 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 221 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:36 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 222 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:37 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 223 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:41 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 224 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:42 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 225 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:46 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 226 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 227 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:52 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 228 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:53 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 229 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:57 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 230 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:46:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 231 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:02 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 232 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:03 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 233 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:07 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 234 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:08 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 235 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:12 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 236 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 237 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:17 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 238 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 239 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:22 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 240 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 241 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:27 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 242 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:28 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 243 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:32 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 244 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 245 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:37 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 246 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:38 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 247 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:42 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 248 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:43 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 249 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:47 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 250 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 251 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:52 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 252 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 253 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:58 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 254 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:47:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 255 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:03 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 256 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 257 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:08 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 258 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 259 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:13 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 260 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 261 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:18 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 262 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 263 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:23 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 264 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 265 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:28 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 266 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 267 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:33 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 268 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 269 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:38 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 270 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 271 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:43 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 272 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:48:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 273 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:20 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 1 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 2 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:23 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 3 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 4 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:26 +0000] "GET /wp-login.php HTTP/1.1" 301 17 "-" "-" 5 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:28 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 6 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 7 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:33 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 8 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 9 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:38 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 10 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:38 +0000] "GET /wp-login.php HTTP/1.1" 301 17 "-" "-" 11 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 12 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:43 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 13 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 14 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:48 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 15 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:48 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 16 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:56:49 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 22 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:49 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 23 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:49 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 24 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:49 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 25 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:56:51 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 36 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:51 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 37 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:53 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 38 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:54 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 39 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:54 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 40 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:54 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 41 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:55 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 42 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:56:57 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 59 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:57 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 60 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:56:58 +0000] "GET /wp-login.php HTTP/1.1" 301 17 "-" "-" 61 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:58 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 62 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:56:59 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 63 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:03 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 64 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:04 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 65 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:08 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 66 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:09 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 67 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:11 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 68 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:11 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 69 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:57:13 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 83 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:13 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 84 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:14 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 85 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:14 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 86 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:14 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 87 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:14 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 88 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:14 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 89 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 90 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:18 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 91 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:57:19 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 97 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:19 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 98 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:19 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 99 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:19 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 100 "http-to-https@internal" "-" 0ms
...
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 105 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 106 "traefik-secure@docker" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 107 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 108 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 109 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 110 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET /wp-login.php HTTP/1.1" 301 17 "-" "-" 111 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 112 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:20 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 113 "http-to-https@internal" "-" 0ms
172.19.0.1 - - [19/Oct/2022:20:57:21 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 114 "http-to-https@internal" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:24 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 115 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:25 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2421 "-" "-" 116 "traefik-secure@docker" "-" 0ms
172.19.0.1 - traefik-dashboard-user [19/Oct/2022:20:57:29 +0000] "GET /api/overview HTTP/2.0" 200 506 "-" "-" 117 "traefik-secure@docker" "-" 0ms

I tried to run a simple httpd container with an index.html file. I have the same problem, access OK from LAN, but "The page is not correctly redirected" error from WAN.
No error or traces of this access attempt in access.log or in the traefik.log.

What will be the correct way to configure Traefik to access from WAN a website in a LAN (behind a router)?
Is it necessary to use the frontend/backend options?

Finally! I have found the problem.

I use Cloudflare to manage my DNS entries, and I have checked the default "proxied" status, which hide my public IP address.

But in this case, I can't access any of my personal service behind my router. Not only Traefik, but even the other hardware like nas on non common ports.

It only gives me the "The page is not correctly redirected" error.

I have modified the DNS entries from "proxied" to "DNS only" and it is working as before.

[Edit] Ok, it is obvious after thinking it. As it is proxied, the requests arrives first to Cloudflare, for the DNS resolution, and from Cloudflare to my router/firewall. Cloudflare is not in my country of residence. As I block any other country in my firewall, I have blocked Cloudflare. And as the requests are proxied, thy comes from Cloudflare...

[Edit 2] Not so obvious, my 80/TCP (HTTP) and 443/TCP (HTTPS) was allowed from anywhere, I have only blocked other ports, so it should not be blocked by my firewall.
I tried without blocking anything, with Cloudflare proxied DNS, I always get the "The page is not correctly redirected" error. In DNS only mode, it works immediately.

[Edit 3] It seems to work with proxied DNS when replacing the SSL/TLS encryption mode from "Flexible" to "Full (strict)".

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.