summaryrefslogtreecommitdiff
path: root/DSACore/Startup.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-05 22:13:03 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-05 22:13:03 +0200
commite32fde2dccc3dea3aef39b4a41fd7b7e69954a82 (patch)
tree9389a6fc71b6b0a4422de8468405f37215c30126 /DSACore/Startup.cs
parent6543b93a67a14ffa6f184e28b67912df7e314315 (diff)
added debuging log
Diffstat (limited to 'DSACore/Startup.cs')
-rw-r--r--DSACore/Startup.cs4
1 files changed, 2 insertions, 2 deletions
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();
}
}