From ddb4537901e68e1d4d009cf0fad444308abbb95e Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 9 Jul 2018 19:24:05 +0000 Subject: [PATCH] --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index e86c307..f052b59 100644 --- a/Program.cs +++ b/Program.cs @@ -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(); } }