Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/64ae67acbb2bb1174f7a085554aed5642a5866a4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -16,11 +16,11 @@ namespace NzbDrone.Services.Service.App_Start
public static void PreStart ( )
{
string logPath = string . Format ( "C:\\NLog\\{0}\\{1}\\${{shortdate}}.log" , HostingEnvironment . SiteName , new EnviromentProvider ( ) . Version ) ;
string error = string . Format ( "C:\\NLog\\{0}\\{1}\\${{shortdate}} . Error.log", HostingEnvironment . SiteName , new EnviromentProvider ( ) . Version ) ;
string error = string . Format ( "C:\\NLog\\{0}\\{1}\\${{shortdate}} _ Error.log", HostingEnvironment . SiteName , new EnviromentProvider ( ) . Version ) ;
LogConfiguration . RegisterUdpLogger ( ) ;
LogConfiguration . RegisterFileLogger ( logPath , LogLevel . Trace ) ;
LogConfiguration . RegisterFileLogger ( error , LogLevel . Warn ) ;
//LogConfiguration.RegisterFileLogger(error, LogLevel.Warn) ;
LogConfiguration . Reload ( ) ;
logger . Info ( "Logger has been configured. (App Start)" ) ;