How to disable Https or SSL in Visual Studio 2019 for web project?

less than 1 minute read

You can disable the SSL or HTTPS in Visual Studio 2019 for your local project execution. Below are the steps,

  1. Right-click the project and select properties
  2. Go to the debug section on the left-hand side
  3. Uncheck the “Enable SSL”
Disable Https or SSL in Visual studio 2019 for web project

Now you can run your site in Http protocol in the local environment.

Leave a comment