Hello
Basically what the title says. I just installed NGINX and DuckDNS (Following this awesome guide).
The post mentioned above says that:
However, that’s not exactly what happens with my instance:
- If I access domain.duckdns.com, I get the default NGINX 502 page
- If I access domain.duckdns.com:8123, it works fine, albeit a bit slow
- Accessing 192.168.x.xx:8123 provides the HTTP response
ERR_EMPTY_RESPONSE
- Accessing the external IP:8123 provides the HTTP response
NET::ERR_CERT_COMMON_NAME_INVALID
. Bypassing the page results in the responseERR_CONNECTION_TIMED_OUT
I want to be able to access the page over HTTPS (Which is working), but also really want access to the local IP as well. I don’t need the external IP to work, but it would be nice if it did.
Configuration:
configuration.yaml
# Loads default set of integrations. Do not remove.
default_config:
python_script:
# Text to speech
tts:
- platform: google_translate
- platform: edge_tts
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
frontend:
themes: !include_dir_merge_named themes
sensor:
- platform: time_date
display_options:
- 'time'
- 'date'
- 'date_time'
- 'date_time_utc'
- 'date_time_iso'
- 'time_date'
- 'time_utc'
- 'beat'
http:
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
.......
DuckDNS Add-On Configuration:
domains:
- domain.duckdns.org
token: token-auth-0
aliases: []
lets_encrypt:
accept_terms: true
algo: secp384r1
certfile: fullchain.pem
keyfile: privkey.pem
seconds: 300
NGINX Add-On Configuration:
domain: domain.duckdns.org
hsts: max-age=31536000; includeSubDomains
certfile: fullchain.pem
keyfile: privkey.pem
cloudflare: false
customize:
active: false
default: nginx_proxy_default*.conf
servers: nginx_proxy/*.conf
Also, off-topic question:
Is there any way to get a backups slug
via the UI? The few times I had to run backups via the CLI I had to get the slug via the backups list --raw-json
command, but it put the backups in a random order and it took forever to find the one I wanted.
–
Thanks in advance for any assistance!
EDIT: It is taking forever to load the instance over the DuckDNS domain, and once it does load, as soon as I click a button it stops working and returns to the loading circle again. The app also won’t connect either, just displays an endless spinner.