This commit is contained in:
2018-07-09 19:24:05 +00:00
parent b6dab0d357
commit ddb4537901

View File

@@ -19,8 +19,8 @@ namespace contact
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
//.UseUrls("http://*:3002")
.UseUrls("http://localhost:3002")
.UseUrls("http://*:3002")//only this port works with nginx proxy
//.UseUrls("http://localhost:3002")//this doesn't work with nginx proxy
.UseStartup<Startup>();
}
}