2024-09-19, 01:07 PM
(This post was last modified: 2024-09-19, 01:07 PM by TheDreadPirate.)
Try adding ssl_trusted_certificate to your config.
This often helps with older Android clients with kind of the same circumstances. Chrome works fine, but the Jellyfin Android app doesn't like the cert.
Perhaps having ssl_trusted_certificate in your config will help with this in WebOS.
Code:
ssl_certificate /etc/letsencrypt/live/domain.tld-0002/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/domain.tld-0002/privkey.pem; # managed by Certbot
ssl_trusted_certificate /etc/letsencrypt/live/domain.tld-0002/chain.pem; # managed by Certbot
This often helps with older Android clients with kind of the same circumstances. Chrome works fine, but the Jellyfin Android app doesn't like the cert.
Perhaps having ssl_trusted_certificate in your config will help with this in WebOS.