Hi,
I am new and trying to setup DUCKDNS. The process worked and ports 443 and 8123 are forwarded. I can access HA from outside the house via HTTP, however if I try HTTPS it does not work. Here is my config:
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
base_url: myaddress.duckdns.org:8123
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
Move your TCP/IP port number to a separate line in the configuration.yaml file:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
http:
base_url: https://my-ha-site.duckdns.org
server_port: 8123
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem