aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Program.cs')
-rw-r--r--src/DevHive.Web/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DevHive.Web/Program.cs b/src/DevHive.Web/Program.cs
index 9cbe12a..6982da9 100644
--- a/src/DevHive.Web/Program.cs
+++ b/src/DevHive.Web/Program.cs
@@ -5,7 +5,7 @@ namespace DevHive.Web
{
public class Program
{
- private const int HTTPS_PORT = 5000;
+ private const int HTTP_PORT = 5000;
public static void Main(string[] args)
{
@@ -16,7 +16,7 @@ namespace DevHive.Web
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
- webBuilder.ConfigureKestrel(opt => opt.ListenLocalhost(HTTPS_PORT));
+ webBuilder.ConfigureKestrel(opt => opt.ListenLocalhost(HTTP_PORT));
webBuilder.UseStartup<Startup>();
});
}