Traefik oauth
April 19, 2021 | ClusterMake a traefik.yml in you project directory:
entryPoints:
  # http redirect to https
  web:
    address: ":80"
    http:
      redirections:
        entryPoint:
          to: websecure
          scheme: https
  # https
  websecure:
    address: ":443"
    http:
      tls:
       ...         Read more
            