Hi guys
So I have a shared library mariadb sql server which I have set up for TLS encryption. It works from my Windows 10 PC where I have added the certificate files to the kodi userdata folder and added the following lines in the advancedsettings.xml file
<key>C:\Users\User\AppData\Roaming\Kodi\userdata\client-key.pem</key>
<cert>C:\Users\User\AppData\Roaming\Kodi\userdata\client-cert.pem</cert>
<ca>C:\Users\User\\AppData\Roaming\Kodi\userdata\ca-cert.pem</ca>
However I can't get it to work on my Raspi's running Libreelec 8.0.2 where I have also put the cert files in the userdata folder and added the following to the advancedsettings.xml
<key>/storage/.kodi/userdata/client-key.pem</key>
<cert>/storage/.kodi/userdata/client-cert.pem</cert>
<ca>/storage/.kodi/userdata/ca-cert.pem</ca>
Does anyone have experience with using the sql encryption options in Kodi that can tell me how to get it working?