Reputation: 21
I am new to ASP.NET and following the basic tutorial on building simple web app. While creating the new web app through this command
dotnet new webapp -o myApp --no-https
Why do people generally prefer to disable HTTPS?
Upvotes: 2
Views: 264
Reputation: 235
The tutorial samples made for learning and they are not real product. therefore the one's that prepare those tutorial doesn't want to educate how SSL and certificates works.
Furthermore that the local https certificates are self sign and not a real certificates.
The use of SSL only complicates the education process so its not relevant
Upvotes: 1