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

Log to debug all HTTP 500 response urls

pull/1904/head
Vasily 6 years ago
parent 2f6879e869
commit 82f8345aa5

@ -539,6 +539,10 @@ namespace Emby.Server.Implementations.HttpServer
}
finally
{
if (httpRes.StatusCode >= 500)
{
_logger.LogDebug("Sending HTTP Response 500 in response to {Url}", urlToLog);
}
stopWatch.Stop();
var elapsed = stopWatch.Elapsed;
if (elapsed.TotalMilliseconds > 500)

Loading…
Cancel
Save