Error field not found, node entryPoint

Hi,

at the moment i got traefik running in a basic configuration. To get it more secure, i want to switch my services to https.
But if i change the config i got this error:

Starting Traefik...
command traefik error: field not found, node: entryPoint
traefik.service: Main process exited, code=exited, status=1/FAILURE
traefik.service: Failed with result 'exit-code'.
Failed to start Traefik.

traefik.toml

################################################################
# Configuration sample for Traefik v2.
################################################################

# Global config
[global]
  checkNewVersion = true
  sendAnonymousUsage = false

[pilot]
    token = "xxx"

# Entrypoints definition
[entryPoints]
  [entryPoints.web]
    address = ":80"

  [entryPoints.websecure]
    address = ":443"

[certificatesResolvers.myresolver.acme]
  email = "xxx@123.de"
  storage = "acme.json"
    [certificatesResolvers.myresolver.acme.dnsChallenge]
      provider = "allinkl"
      delayBeforeCheck = 2
      entryPoint ="web"
  #   all_inkl_login  = "user"
  #   all_inkl_password = "password"
      resolver = ["9.9.9.9:53", "1.1.1.1:53"]


################################################################
# Traefik logs configuration
################################################################

[log]
  #level = "DEBUG"
  level = "ERROR"
  filePath = "/var/log/traefik/traefik.log"
  format = "common"

[accessLog]
  filePath = "/var/log/traefik/access.log"
  format = "common"

################################################################
# API and dashboard configuration
################################################################

# Enable API and dashboard
[api]

  # Name of the related entry point
  # Default: "traefik"
  # entryPoint = "traefik"

  # Enabled Dashboard
  # Default: true
  #
  dashboard = true
  insecure = true

################################################################
# Ping configuration
################################################################

# Enable ping
[ping]

  # Name of the related entry point
  # Default: "traefik"
  #
  # entryPoint = "traefik"

[providers]
  [providers.file]
    directory = "/etc/traefik/dynamic"
    watch = true

Thanks for any idea and hints.

Regards
gerribaldi