summaryrefslogtreecommitdiff
path: root/DSACore/Startup.cs
diff options
context:
space:
mode:
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();
}
}