Use webfaction port

master
dan 2019-07-16 22:28:47 -06:00
parent 15ffe475c7
commit d026d6f621
1 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ namespace OFBButte.Api
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
.UseStartup<Startup>()
.UseUrls("https://localhost:29021");
}
}