Hi everybody.
I’m a HA newbie and in the last month I had configured Hass.io on my Raspberry. It works very well, even from outside with DuckDns. The only thing won’t work is HTTPS: I read all the post in this forum about this argument and I tried every suggestion, but without luck.
This is my configuration.yaml:
http:
base_url: https://XXXX.duckdns.org:8123
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
I tried every possible combination for base_url: with and without http, with and without https, with and without port, with and without blockquote… but nothing happen!
This is my DuckDns addon configuration:
{
"lets_encrypt": {
"accept_terms": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"token": "my-duckdns-token",
"domains": [
"XXXX.duckdns.org"
],
"seconds": 300
}
And this is my Let’s encrypt addon configuration:
{
"email": "[email protected]",
"domains": [
"XXXX.duckdns.org"
],
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
}
On my router (Vodafone station) I mapped the ports like this:
- 8123 on Raspberry 8123
- 443 on Raspberry 8123
- 80 on Raspberry 80
There aren’t errors in DuckDns and Let’s Encrypt logs, but if I try to reach my duckdns url in https from outside, Chrome say “ERR_SSL_PROTOCOL_ERROR”, Firefox say “SSL_ERROR_RX_RECORD_TOO_LONG”. If I use http, it works well!
Can anyone help me please?