Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/215b18903ec98f8c009ef53e9d0fca5ba1c3be1b/PlexRequests.UI/NLog.config You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/PlexRequests.UI/NLog.config

20 lines
652 B

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
autoReload="true"
throwExceptions="true"
internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log" >
<targets async="true">
<target name="filelog" xsi:type="File" fileName="logs/${shortdate}.log"
layout="${date} ${logger} ${level}: ${message}" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="filelog" />
</rules>
</nlog>