Cloud attempted to create another zeroconf instance when adding http configuration

Hello! I am trying to add https to my home assistant. I already have a domain name and certificate from lets’ encrypt that I use for my other sites.

I have another website running with it using HTTPS to access my own APIs on an HTTPS endpoint, so I doubt it is a problem with the SSL certificate.

I am running Home Assistant 2025.2.5 in a Docker container.

I get this error whenever I add HTTP to my configuration:

2025-03-10 22:46:05.270 WARNING (MainThread) [homeassistant.helpers.frame] Detected that integration ‘cloud’ attempted to create another Zeroconf instance. Please use the shared Zeroconf via await homeassistant.components.zeroconf.async_get_instance(hass) at homeassistant/components/cloud/init.py, line 263: websession = async_get_clientsession(hass). Please create a bug report at GitHub · Where software is built

And this is my configuration file:



# 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:
  ssl_certificate: /home/name/Documents/fullchain.pem
  ssl_key: /home/name/Documents/privkey.pem

Yes, my docker volume is in /Documents, I will fix that later

I’ve already tried:

zeroconf:
  default_interface: true

As soon as I remove the http configuration, my home assistant works fine!

There must be something very obvious that I am missing, so sorry for my foolishness!