![]() |
SOLVED: SSL Handshake Failed on Fire TV - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Networking & Access (https://forum.jellyfin.org/f-networking-access) +---- Thread: SOLVED: SSL Handshake Failed on Fire TV (/t-solved-ssl-handshake-failed-on-fire-tv) Pages:
1
2
|
RE: SSL Handshake Failed on Fire TV - Linseed9747 - 2024-06-19 One other thing I have found so far digging under the hood, EVERY service I have running on the reverse proxy contains it's own folder (a couple dozen), and each of those folders contains it's own file structure for all six of those PEM files. In other words, I feel like making any change to my certificates may require I change the files for EACH and EVERY one of those folders. I'm still trying to figure it out, but assuming I eventually feel comfortable trying to change a certificate directly by ssh, what exactly would I be changing? Okay, sorry I didn't catch your replies, I'll take a look at what you suggested and get back to you. RE: SSL Handshake Failed on Fire TV - Linseed9747 - 2024-06-19 Okay, so when I nano the file referenced in your link, it contains a couple dozen server blocks, each service using reverse proxy has it's own block. Here is the jellyfin block. Code: server { RE: SSL Handshake Failed on Fire TV - TheDreadPirate - 2024-06-19 What's in these files? include /usr/syno/etc/www/certificate/ReverseProxy_71437579-6014-46a7-9c46-<redacted>/cert.conf*; include /usr/syno/etc/security-profile/tls-profile/config/ReverseProxy_71437579-6014-46a7-9c46-<redacted>.conf*; RE: SSL Handshake Failed on Fire TV - Linseed9747 - 2024-06-19 #1 file ssl_certificate /usr/syno/etc/www/certificate/ReverseProxy_71437579-6014-46a7-9c46-<redacted>/dd624636-3fe2-4209-8840.pem; ssl_certificate_key /usr/syno/etc/www/certificate/ReverseProxy_71437579-6014-46a7-9c46-<redacted>/fc60cdf7-ee40-45c1-83bf.pem; # 2 file ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECD> ssl_dhparam /usr/syno/etc/ssl/dh2048.pem; RE: SSL Handshake Failed on Fire TV - TheDreadPirate - 2024-06-19 Comment out file #1. Then add these lines to the config. Code: ssl_certificate /path/to/fullchain.pem; My nginx config for reference. https://sourceb.in/auQ7583d3q RE: SSL Handshake Failed on Fire TV - Linseed9747 - 2024-06-20 That was a good idea TheDreadPirate, but unfortunately making those modifications to the Nginx config directly on Synology seems to be a no-go. That entire reverse-proxy folder structure gets re-written by the software. Doing so completely killed the services that rely on the reverse-proxy. I saved a backup of the original config so I have been able to recover via shell. However, I did find the solution: SOLUTION: When you import new certificate files for a WILDCARD CERTIFICATE on a Synology NAS, you will be prompted to input three files: Private Key: Certificate: Intermediate certificate (optional): The private key and certificate are self explanatory, but when you are importing a wildcard certificate, make sure you obtain a CA Bundle from the certificate authority to import into the 'Intermediate certificate' field. I'm not completely sure what I input into that field originally, but when I obtained that 3-certificate bundle from my provider it fixed this issue. Thanks @TheDreadPirate for all your help. |