aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Program.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-12 20:45:14 +0200
committertranstrike <transtrike@gmail.com>2021-01-12 20:45:14 +0200
commit56f5578d5f93a56984deb6735dba51551868f6d8 (patch)
tree5f309ba5a79882ad41ed78bf7ae8f18f38be757e /src/DevHive.Web/Program.cs
parentd2a754aa220f37ac28393451e7ad5793687bb999 (diff)
downloadDevHive-56f5578d5f93a56984deb6735dba51551868f6d8.tar
DevHive-56f5578d5f93a56984deb6735dba51551868f6d8.tar.gz
DevHive-56f5578d5f93a56984deb6735dba51551868f6d8.zip
Full implementation of Language & Technologies to User
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>();
});
}