Trouble getting conversations to work

Hey all,

Having a bit of a struggle to get conversations working; I’d like to use a custom phrase to turn on/off GPIO pins on my raspberry Pi. I’m not able to get conversations working and constantly get a ‘Home Assistant did not hear anything’ issue. Digging into this, it looks like conversations are only available on https; to resolve this I believe I need to use SSL via duckdns. I’m using duckdns but i’m getting stuck with the configuration error when adding the last 2 lines;

base_url: https://.duckdns.org
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem

I figured when installing the duckdns add-on, it would install these above certs and keys. Not sure where to go from here to get them installed. Here is my duckdns portion;

{
“lets_encrypt”: {
“accept_terms”: true,
“certfile”: “fullchain.pem”,
“keyfile”: “privkey.pem”
},
“token”: “b84c5671-6d34-4942-84b2-9d98c5ed352f”,
“domains”: [
“http://.duckdns.org”
],
“seconds”: 300
}

And the error is below;

Testing configuration at /config
Failed config
http:
- Invalid config for [http]: not a file for dictionary value @ data[‘http’][‘ssl_certificate’]. Got ‘/ssl/fullchain.pem’. (See /config/configuration.yaml, line 25). Please check the docs at https://home-assistant.io/components/http/
- cloud: ?
mode: production
config: ?
conversation: ?
discovery: ?
ignore: ?
frontend: ?
javascript_version: auto
group: ?
history: ?
exclude: ?
include: ?
use_include_order: False
http: [source /config/configuration.yaml:25]
base_url: https://.duckdns.org
ssl_certificate: /ssl/fullchain.pem
introduction: ?
logbook: ?
map: ?
panel_iframe: ?
configurator: ?
icon: mdi:wrench
title: Configurator
url: http://hassio.local:3218
script: ?
sun: ?
updater: ?
include_used_components: False
reporting: True

Successful config (partial)
http:

Figured it out; just had to reinstall duckdns add-on. We gucci now.