From e32fde2dccc3dea3aef39b4a41fd7b7e69954a82 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Sun, 5 May 2019 22:13:03 +0200 Subject: added debuging log --- DSACore/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'DSACore/Startup.cs') diff --git a/DSACore/Startup.cs b/DSACore/Startup.cs index e024cb4..210a056 100644 --- a/DSACore/Startup.cs +++ b/DSACore/Startup.cs @@ -55,7 +55,7 @@ namespace DSACore // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env) { - if (env.IsDevelopment()||true) + if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } @@ -70,7 +70,7 @@ namespace DSACore //app.UseCors("AllowSpecificOrigin"); - //app.UseHttpsRedirection(); + app.UseHttpsRedirection(); app.UseMvc(); } } -- cgit v1.2.3-54-g00ecf