Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c5a5f77b9ea1b3d72583abb1773c6529fc219ba3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from BaronGreenback/19.0RC--Fix-CertificateLoadError

Fix - Access Denied on using certificates in windows as user.
pull/4781/head
Claus Vium 4 years ago committed by GitHub
commit c5a5f77b9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -716,7 +716,7 @@ namespace Emby.Server.Implementations
// Don't use an empty string password
var password = string.IsNullOrWhiteSpace(info.Password) ? null : info.Password;
var localCert = new X509Certificate2(certificateLocation, password);
var localCert = new X509Certificate2(certificateLocation, password, X509KeyStorageFlags.UserKeySet);
// localCert.PrivateKey = PrivateKey.CreateFromFile(pvk_file).RSA;
if (!localCert.HasPrivateKey)
{

Loading…
Cancel
Save