Connection Refused to Configurator via Home Assistant UI

I have Home Assistant running in a docker container on an Intel NUC. I can’t access the Configurator from the Home Assistant UI and get the message “192.168.x.x refused to connect”. Instead, I have to go to the Hass.io Configurator Add-on Web UI to access the yaml files. Does the embedded Configurator work when Hass.io is running in a docker container? Is there another type of Configurator that should be used with Hass.io in a docker containConer? Has anyone else experienced this and found a fix or have other recommendations?

System Information
Host system: Ubuntu 18.04.3 LTS
Hass.io supervisor: 189
Homeassistant Image: 0.100.1

Configurator Config

{
  "dirsfirst": false,
  "enforce_basepath": false,
  "ignore_pattern": [
    "__pycache__"
  ],
  "ssh_keys": [],
  "USERNAME": "MyUserName",
  "PASSWORD": "MyPassword",
  "certfile": "fullchain.pem",
  "keyfile": "privkey.pem",
  "ssl": false,
  "allowed_networks": [
    "192.168.1.0/24",
    "172.30.0.0/16"
  ],
  "banned_ips": [
    "8.8.8.8"
  ],
  "banlimit": 0
}

configuration.yaml

panel_iframe:
  configurator:
    title: Configurator
    icon: mdi:wrench
    url: http://192.168.x.x:3218

Just figured this out I think.
Now you are not suppose to add the “panel_iframe”-configuration in your configuration.yaml. Now you are suppose to add the panel by sliding the “Show in sidebar” option on the Add-On configuration page.

Regards
Gojan

1 Like

YES, this solved my problem as well. Thanks!!!