Android App + https

Hello,

I have installed nginx proxy manager and duckdns and have certificate, can login from inside of the net using https://ip:8123 and outside of the net using https://*****.duckdns.org:8123
Also i can login using browser on the phone from inside of the net, but can’t do this from the app.

Also i have this in configuration.yaml:
http:
ip_ban_enabled: true
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem

and ports open on router:
80 to HA 80
443 to HA 80
8123 to HA 8123

What am i doing wrong?

Also when i use browser (chrome) on PC i have this:
image

but it looks like everything is ok with the certificate

Remove 8123 to HA 8123
Change 443 to HA 443

Remove this from configuration.yaml
And add this to the http section

use_x_forwarded_for: true
trusted_proxies:
  - 172.30.33.0/24

Afterwards you should be able to access HA locally with http://ip:8123 and externally with https://****.duckdns.org

Tnaks a lot, that works!