YAML Konfig Fehlermeldung

Hallo.

Ich habe nach dem Video von Simon den Fernzugriff mit Cloudflare eingerichtet.

Bei www.whatsmydns.net sind alle Länder grün abgehakt.
Bei den Entwicklungswerkzeuge stehe ich allerdings an.

Fileeditor:


# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml



http:
cors_allowed_origins:
        - https://google.com
        - https://www.home-assistant.io
    ip_ban_enabled: true
    login_attempts_threshold: 5
  use_x_forwarded_for: true
  trusted_proxies:
    - 172.30.33.0/24

Folgende Fehlermeldung bekomme ich, wenn ich die Konfiguration prüfe:
Konfigurationsfehler:
Error loading /config/configuration.yaml: while parsing a block mapping
in “/config/configuration.yaml”, line 3, column 1
expected , but found ‘’
in “/config/configuration.yaml”, line 19, column 5

Kann mir hier bitte jemand weiterhelfen.

Vielen Dank Ulrich

Die Einrückungen sind bei YAML extrem wichtig.

http:
  cors_allowed_origins:
    - https://google.com
    - https://www.home-assistant.io
  ip_ban_enabled: true
  login_attempts_threshold: 5
  use_x_forwarded_for: true
  trusted_proxies:
    - 172.30.33.0/24

Was in Zeile 3 falsch sein soll sehe ich nicht.

LG
Tobi