Asthakubavat
Asthakubavat

Reputation: 21

Why should I disable https while creating new ASP.NET project?

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

Answers (1)

ofir elarat
ofir elarat

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

Related Questions