I added a nginx webserver to the Pi that is running Dakboard (I’m not running the Dakboard OS) and created a custom homepage (that is started when the Pi is booted).
<!DOCTYPE html>
<html><head>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
background-color: black;
}
</style>
</head>
<body>
<iframe scrolling="no" id="top_frame" style="width: 1080px; height: 1760px;" src="https://dakboard.com/display/uuid/<<MYUUID>>" frameBorder="0">></iframe>
<iframe scrolling="no" id="bottom_frame" style="width: 1080px; height: 160px;" src="http://homeassistant.local:8123/lovelace/board?kiosk" frameBorder="0"></iframe>
</body></html>
That custom homepage has two iframes. The top one is showing Dakboard info (calendar, photos, weather etc). The bottom iframe is showing my home assistant info.
This has been working flawlessly, until two updates ago. The bottom frame now displays “homeassistant.local refused to connect.”
It works fine if I replace that iframe with a different local URL, and it also works fine if I call that URL from a different browser.
The logs on HA don’t show anything regarding this connection that is not accepted.
What could be causing this ?