So I decided to make the plunge into setting up AppDaemon and HADashboard in Hassio and I am running into problems.
I have duckdns and letsencrypt installed and from what I can tell AppDaemon is connecting to hass but I can’t get the web UI to load.
Here is my configuration file. I’ve tried using the IP address of the pi and my duckdns url and both have the same result.
log:
logfile: STDOUT
errorfile: STDERR
appdaemon:
disable_apps: 1
threads: 10
app_dir: /config/appdaemon/apps
api_port: 5000
api_key: http_password
api_ssl_certificate: /ssl/fullchain.pem
api_ssl_key: /ssl/privkey.pem
plugins:
HASS:
type: hass
ha_url: https://192.168.1.38:8123
ha_key: !secret http_password
cert_path: /ssl/fullchain.pem
cert_verify: False
namespace: default
hadashboard:
dash_url: http://192.168.1.38:5050
dash_dir: /config/appdaemon/dashboards
When AppDaemon runs, the log shows that it connects to hass but when I click on the open web UI button I get an error in chorome saying the site refused to connect.
2018-02-24 00:45:44.797593 INFO AppDaemon Version 3.0.0b2 starting
2018-02-24 00:45:44.798328 INFO Configuration read from: /config/appdaemon/appdaemon.yaml
2018-02-24 00:45:44.801135 INFO AppDaemon: Starting Apps
2018-02-24 00:45:44.814454 INFO AppDaemon: Loading Plugin HASS using class HassPlugin from module hassplugin
2018-02-24 00:45:45.139377 INFO AppDaemon: HASS: HASS Plugin Initializing
2018-02-24 00:45:45.140685 INFO AppDaemon: HASS: HASS Plugin initialization complete
2018-02-24 00:45:45.142215 INFO Starting Dashboards
2018-02-24 00:45:45.164149 INFO Starting API
2018-02-24 00:45:45.509833 INFO AppDaemon: HASS: Connected to Home Assistant 0.63.3
2018-02-24 00:45:46.063559 INFO AppDaemon: Got initial state from namespace default
2018-02-24 00:45:48.082139 INFO AppDaemon: Loading Module: /config/appdaemon/apps/hello.py
2018-02-24 00:45:48.120408 INFO AppDaemon: Loading Object hello_world using class HelloWorld from module hello
2018-02-24 00:45:48.450436 INFO hello_world: Hello from AppDaemon
2018-02-24 00:45:48.457261 INFO hello_world: You are now ready to run Apps!
2018-02-24 00:45:48.458926 INFO AppDaemon: App initialization complete
any assistance would be greatly appreciated.