I have made an mvc application and tried adding SSL to it.
The site works fine on http, but when I navigate to the https url, it just says that the site cannot be reached(ERR_CONNECTION_RESET).
I have correct bindings in the (IIS Express) applicationhost.config file.
<bindings>
<binding protocol="http" bindingInformation="*:3426:localhost" />
<binding protocol="https" bindingInformation="*:44341:localhost" />
</bindings>
I can see the https in the IISExpress.
I tried starting visual studio as administrator.
I tried disabling and enabling ssl.
I've tried suggestions in this thread.
Nothing works.
What can be the problem? What am I missing?
Thanks.