Skip to content

Commit

Permalink
Removed https redirection from the dev env
Browse files Browse the repository at this point in the history
  • Loading branch information
DevDHera committed May 21, 2020
1 parent f247e16 commit 19f6dc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Kyanite.API/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "weatherforecast",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down
2 changes: 1 addition & 1 deletion Kyanite.API/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
c.RoutePrefix = string.Empty;
});

app.UseHttpsRedirection();
// app.UseHttpsRedirection();

app.UseRouting();

Expand Down

0 comments on commit 19f6dc1

Please sign in to comment.