3

I set up my localhost site for my project following this procedure: https://www.hanselman.com/blog/WorkingWithSSLAtDevelopmentTimeIsEasierWithIISExpress.aspx

My applicationhost.config looks like this:

    <site name="ProjectName.Web" id="2">
        <application path="/" applicationPool="Clr4IntegratedAppPool">
            <virtualDirectory path="/" physicalPath="C:\Users\myUserName\Source\Repos\SolutionName\ProjectName.Web" />
        </application>
        <bindings>
            <binding protocol="http" bindingInformation="*:51415:localhost" />
            <binding protocol="https" bindingInformation="*:44342:localhost" />
            <binding protocol="http" bindingInformation="*:80:myPC.myDomain.com" />
            <binding protocol="https" bindingInformation="*:443:myPC.myDomain.com" />
        </bindings>
    </site>

I reviewed this post also: Why does SSL 443 fail to work in IIS Express for custom domains of Visual Studio web projects?

Still get this:

This site can’t be reached

The connection was reset.

How can I debug this issue?

Community
  • 1
  • 1
M Kenyon II
  • 4,136
  • 4
  • 46
  • 94
  • What's the URL in your browser when you see the error? Run SSLDiag for your IIS Express site in Jexus Manager and see if it reveals the issue, https://www.jexusmanager.com/en/latest/tutorials/ssl-diagnostics.html – Lex Li Sep 09 '17 at 03:25

0 Answers0