![]() |
SOLVED: DLNA plugin not running if RequireHttps == true - 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: DLNA plugin not running if RequireHttps == true (/t-solved-dlna-plugin-not-running-if-requirehttps-true) |
DLNA plugin not running if RequireHttps == true - bitstream - 2025-04-10 Just for documentation in case someone else is running into the same problem: When settingĀ <RequireHttps>true</RequireHttps> the DLNA plugin fails to start with this log entry: [ERR] The DLNA specification does not support HTTPS. This is because DLNA is using SSDP as communication protocol which again is nothing else then sending a HTTP header over UDP. Still, for me, it was unexpected since I thought RequireHttps is only used in the context of the UI to enforce secure communication, which makes sense on the UI as there are passwords transmitted from the client to the server. Since this is not the case with DLNA, it's kind of okish that DLNA is running on http. So it might be worth a thought to decouple RequireHttps from the DNLA plugin. |