Trusted network configuration problem

Home Assistant 0.108.3
I’m trying to configure trusted_proxies /trusted_networks
Basically i’d like to have to option to skip longing screen when i
connect to HA locally .
Im running traefik as reverse proxy - which running on same server ,
sharing same docker network .

below configuration :

homeassistant:
  auth_providers:
    - type: homeassistant
    - type: trusted_networks
      trusted_networks:
        - 192.168.1.0/24
http:
  base_url: !secret base_url
  ip_ban_enabled: true
  login_attempts_threshold: 5
  use_x_forwarded_for: true
  trusted_proxies:
  - 127.0.0.1
  - 172.29.4.5 #traefik docker
  - 192.168.1.0/24

  

I connect to HA with dns name http:/mydomain.com
but i keep getting “Your computer is not whitelisted”

Typo ? homeassistance: instead of homeassistant:

homeassistance:
  auth_providers:
    - type: homeassistant
    - type: trusted_networks
      trusted_networks:
        - 192.168.1.0/24
http:
  base_url: !secret base_url
  ip_ban_enabled: true
  login_attempts_threshold: 5
  use_x_forwarded_for: true
  trusted_proxies:
  - 127.0.0.1
  - 172.29.4.5 #traefik docker
  - 192.168.1.0/24

  

Thanks , it actually homeassistant ,i misstype it here only… I keep getting message “pc not in white list”

anybody can help?

Hi. I am having the exact same issue. Were you able to find a solution? Thanks!