HASSIO - No WebGUI after install "Let's Encrypt"

Hello,

i ve installed “Let’s Encrypt”. Configuration was ok, but after
reboot i ve no WebGUI. Perhaps anyone can help. HASSIO should run:

core-ssh:~# hassio ha info
{
    "result": "ok",
    "data": {
        "version": "0.71.0",
        "last_version": "0.71.0",
        "machine": "raspberrypi3",
        "image": "homeassistant/raspberrypi3-homeassistant",
        "custom": false,
        "boot": true,
        "port": 8123,
        "ssl": false,
        "watchdog": true,
        "wait_boot": 600
    }
}

If i try to open my page (IP:8123) the page shows “This website is not accessible”.

update:

it works, if i disable ssl_xxx

http:
  api_password: !secret http_password
  # DuckDNS / LetsEncrypt
  # base_url: 1234.duckdns.org:8123
  # ssl_certificate: /ssl/fullchain.pem
  # ssl_key: /ssl/privkey.pem

with this:

http:
  api_password: !secret http_password
  # DuckDNS / LetsEncrypt
  base_url: 1234.duckdns.org:8123
  ssl_certificate: /ssl/fullchain.pem
  ssl_key: /ssl/privkey.pem

ive no WebGUI

Your base URL should be https://1234 etc for starters and you have to use https internally too.

you mean like this?

http:
  api_password: !secret http_password
  # DuckDNS / LetsEncrypt
  base_url: https://1234.duckdns.org:8123
  ssl_certificate: /ssl/fullchain.pem
  ssl_key: /ssl/privkey.pem

Yep. Would be useful if you also posted your config from the add-on and confirmed what port you forwarded on your router.

It doesn’t look as if LE is installed as SSL does not show true like mine

core-ssh:~# hassio ha info
{
    "result": "ok",
    "data": {
        "version": "0.71.0",
        "last_version": "0.71.0",
        "machine": "raspberrypi3",
        "image": "homeassistant/raspberrypi3-homeassistant",
        "custom": false,
        "boot": true,
        "port": 8123,
        "ssl": true,
        "watchdog": true,
        "wait_boot": 600
    }
}

I just installed DuckDNS which does the LE Cert at the same time. The LE add on is just for renewing.

Add the DuckDNS add on and try again.