Hi,
Since upgrading to 0.77 of Hassio none of my HAdashboards are accessible anymore. I guess this has something to do with the user profiles. What do I need to do to make them work again. App Daemon automation are working OK.
my appdaemon.yaml is as follows
secrets: /config/secrets.yaml
log:
logfile: /config/logs/info.log
errorfile: /config/logs/err.log
accessfile: /config/logs/access.log
logsize: 100000
log_generations: 4
appdaemon:
latitude:redacted
longitude: redacted
elevation: 53
disable_apps: 0
threads: 10
api_port: 5000
api_key: !secret http_password
api_ssl_certificate: /ssl/fullchain.pem
api_ssl_key: /ssl/privkey.pem
log_thread_actions: 0
plugins:
HASS:
type: hass
namespace: default
ha_url: !secret ha_url
ha_key: !secret http_password
cert_path: /ssl/privkey.pem
cert_verify: True
hadashboard:
dash_url: http://127.0.0.1:5050
dash_dir: /config/appdaemon/dashboards
dash_ssl_certificate: /ssl/fullchain.pem
dash_ssl_key: /ssl/privkey.pem
dash_password: !secret http_password
My Configuration.yaml is as follows
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: !secret latitude
longitude: !secret longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 53
# metric for Metric, imperial for Imperial
unit_system: metric
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
customize: !include customize/customize.yaml
customize_domain: !include customize/customize_domain.yaml
# Enables the frontend
frontend:
cloud:
recorder:
updater:
config:
history:
logbook:
sun:
map:
http:
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
api_password: !secret http_password
base_url: !secret baseURL
# Discover some devices automatically
discovery:
ignore:
- apple_tv
# Add Homekitsupport
homekit:
auto_start: False
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
logger:
default: warning
logs:
urllib3.connectionpool: error
#requests.packages.urllib3.connectionpool: critical
############################################
#Core Components
############################################
wemo:
weather:
- platform: darksky
api_key: cba412a0cfd3a9299410485efee8d437
influxdb:
host: 192.168.0.103
port: 8086
database: home_assistant
username: home-assistant
password: password
max_retries: 3
default_measurement: state
vera:
vera_controller_url: http://192.168.0.142:3480/
mqtt:
broker: 192.168.0.105
port: 1883
birth_message:
topic: 'Home/MQTT/status'
payload: 'online'
will_message:
topic: 'Home/MQTT/status'
payload: 'offline'
ring:
username: !secret ring_username
password: !secret ring_password
nest:
client_id: !secret nest_client_id
client_secret: !secret nest_client_secret
sensors:
monitored_conditions:
- 'co_status'
- 'smoke_status'
- 'battery_health'
vacuum:
- platform: xiaomi_miio
host: 192.168.0.221
token: !secret roborocktoken
name: "Sadie"
apple_tv:
- name: Apple TV
host: 192.168.0.111
login_id: !secret appleTV_loginID
start_off: true
google:
client_id: !secret google_clientID
client_secret: !secret google_secret
# Text to speech
tts:
platform: google
google_assistant:
project_id: !secret GA_projectID
client_id: !secret GA_clientID
access_token: !secret GA_accesstoken
exposed_domains:
- switch
- light
- cover
- script
- input boolean
xiaomi_aqara:
discovery_retry: 10
gateways:
- mac: 7811DCB35715
key: C72ABF022AC345AE
host: 192.168.0.179
- mac: 7811DC64EA23
key: ACE7568C0CFF4539
host: 192.168.0.180
############################################
#Includes
############################################
device_tracker: !include includes/devicetracker.yaml
group: !include includes/groups.yaml
sensor: !include includes/sensors.yaml
switch: !include includes/switch.yaml
light: !include includes/light.yaml
zone: !include includes/zones.yaml
automation: !include_dir_merge_list automations/
cover: !include includes/covers.yaml
binary_sensor: !include includes/binarysensor.yaml
script: !include_dir_merge_named scripts/
input_number: !include includes/inputNumber.yaml
input_boolean: !include includes/inputBoolean.yaml
camera: !include includes/camera.yaml
#scene: !include scene.yaml
panel_iframe: !include includes/panel.yaml
notify: !include includes/notify.yaml
media_player: !include includes/mediaplayers.yaml