Shuping
Shuping

Reputation: 5468

How to specify the HTTPS port number in IIS Express 10 with Visual Studio 2015

With IIS Express 10 and Visual Studio 2015 I am able to set a Web API project to use SSL from the project properties window (F4) by setting SSL Enabled to True. By doing so, Visual Studio and IIS Express will generate a random port number and it will be displayed in SSL URL field. Then I am able to launch the project with HTTPS protocol. enter image description here

However, I need a specific SSL port for my project, then I tried different approaches:

enter image description here enter image description here

But unfortunately, none of them is working, in both case launching the project results in a "Site can't be reached" error.

Upvotes: 1

Views: 1175

Answers (1)

Hendrik Breezy
Hendrik Breezy

Reputation: 128

Did you try using Port 443 (Standard SSL-Port) for HTTP use 80

Upvotes: 0

Related Questions