user1404577
user1404577

Reputation:

How can I change the ssl port number for my asp.net mvc web application inside Visual Studio

I have two web applications that are both using the same ssl port number https://localhost:44300/; which doesn't allow me to run both of them at once.

How can I change the port number for one of the web applications to use port number 44301?


I right clicked on the project, then I clicked on the Web tab but this will only allow me to change the http port and not the https port.

Upvotes: 6

Views: 5724

Answers (1)

gbdavid
gbdavid

Reputation: 1749

To complement Dandy's answer comment, this is a picture of the section where you can make changes relating to the server/port you want to use for your app. You can also select if you want to use a local IIS server or a remote host.

enter image description here

Upvotes: 8

Related Questions