Hello HA Community,
I am brand new to home automation and have been head under water learning the last week on how to set everything up. I finally got the server installed and hass.io installed today. I am trying to setup some webhook integrations, but I think I need the DuckDNS in order for this to work.
I signed up for an account, went into my router settings and forwarded the port (I don’t know if I am doing this part right, but below is my config).
Protocol: TCP
External Port Range : 443
Internal Port Range: 8123
Internal IP Address: Ubuntu Server for HA (which works if I use this IP directly)
I installed DuckDNS and inserted the following:
{
“lets_encrypt”: {
“accept_terms”: true,
“certfile”: “fullchain.pem”,
“keyfile”: “privkey.pem”
},
“token”: “831b3c79-3679-4ae0-b723-39744daXXXX”,
“domains”: [
“XXXX.duckdns.org”
],
“seconds”: 300
}
My YAML Config //
Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
api_password: PW
base_url: http://xxxx.duckdns.org:8123
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
When I go to my base_url. I get a popup asking for user/password (and that the site is not secure), but no credentials work. I use the ones I know work for hass.io and they don’t work (and tried my server password, and several others.).
When I check the log for DuckDNS all I get is this:
Fri Jun 7 03:44:28 UTC 2019: KO
Fri Jun 7 03:49:28 UTC 2019: KO
Fri Jun 7 03:54:29 UTC 2019: KO
Based on my research, I should be getting messages about the program starting, correct? That never happens (but it’s odd I get the user/pass popup when going to my URL). I am not sure what I am doing wrong, and I’ve Googled the heck out of this and just at a standstill. I’ve tried restarting DuckDNS as well, and that doesn’t seem to do anything.I don’t have to do anything with the IP Address I get when I setup DuckDNS next to the domain it gives me, do I?
Any advice and guidance would be greatly appreciated!