Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/81c492aa1488e480f5231e78818c1748d2aa5ac8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
7 deletions
@ -20,7 +20,7 @@ TBC
#Installation
TBC
Just run the .exe! (Use mono if not on Windows `mono RequestPlex.UI.exe` )
#Configuration
@ -12,10 +12,13 @@ namespace RequestPlex.UI
{
static void Main ( string [ ] args )
{
var uri = "http://localhost:3579/" ;
var s = new Setup ( ) ;
s . SetupDb ( ) ;
var service = new SettingsService ( ) ;
var settings = service . GetSettings ( ) ;
var uri = "http://localhost:3579/" ;
if ( settings ! = null )
{
uri = $"http://localhost:{settings.Port}" ;
@ -1,7 +1,5 @@
using Owin ;
using RequestPlex.Core ;
namespace RequestPlex.UI
{
public class Startup
@ -9,9 +7,6 @@ namespace RequestPlex.UI
public void Configuration ( IAppBuilder app )
{
app . UseNancy ( ) ;
var s = new Setup ( ) ;
s . SetupDb ( ) ;
}
}
}