Hello, I am trying to configure remote access to my HA by following these two videos:
so far I have:
-
Create a port forward rule in router (8123 (outside) -> 8123 (inside))
-
Successfully create a DuckDNS account are obtained a token
-
Successfully installed DucDNS add-on and configured with:
lets_encrypt:
accept_terms: true
certfile: fullchain.pem
keyfile: privkey.pem
token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
domains:
- xxxxxxxxxx.duckdns.org
aliases: []
seconds: 300
- Edited configuration.ymal with:
http:
base_url: xxxxxxxxxx.duckdns.org
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
-
validated configuration
-
restarted
Once restarted, I cannot anymore access HA with the internal IP address (192.168.1.251:8123)… (I am not sure if I could access it form outside as well)… the only way to make it work, it to access via ftp /config/configuration.ymal and delete the followings:
http:
base_url: xxxxxxxxxx.duckdns.org
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
it seems to me that the http configuration is somehow breaking the system…
any suggestion?