我无法让 IISExpress 接受我正在开发的 VS2010MVC3项目的安全连接。我可以让它在端口80上接受不安全的连接,但在端口443上不安全。
基于谷歌搜索,我采取了以下步骤:
1)通过在 VS2010命令行上执行以下命令,找到我的 IIS Express Server 自签名证书的 SHA1指纹:
certmgr.exe /c /s /r localMachine MY
结果是9B088F80 A4FC314128F6289070BA1FC449FDD009。后来我才知道,使用拇指指纹时需要删除空格。
2)通过在高级命令行提示符下执行以下命令,删除链接到端口443的任何证书:
netsh http delete sslcert ipport=0.0.0.0:443
3)通过运行 VS2010工具菜单上的创建 GUID 生成一个新的 GUID B0421A5B-FF61-47CE-892D-11AA3A9C7D2A.
4)在高架命令行提示符上执行以下命令,将自签名证书安装到443端口:
netsh http add sslcert ipport=0.0.0.0:443 certhash=9B088F80A4FC314128F6289070BA1FC449FDD009 appid={B0421A5B-FF61-47CE-892D-11AA3A9C7D2A}
5)在升级的命令行提示符下运行以下命令来修改 ACL:
netsh http add urlacl url=https://localhost:443/ user=everyone
6) Modified the application.config file for IIS Express by adding a binding for port 443 and the https protocol. The sites section for the file ended up looking like this:
<sites>
<site name="Development Web Site" id="1" serverAutoStart="true">
<application path="/">
<virtualDirectory path="/" physicalPath="%IIS_BIN%\AppServer\empty_wwwroot" />
</application>
<bindings>
<binding protocol="https" bindingInformation="*:443:localhost" />
<binding protocol="http" bindingInformation="*:80:localhost" />
</bindings>
</site>
<siteDefaults>
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" maxLogFileSizeKB="1024" />
</siteDefaults>
<applicationDefaults applicationPool="IISExpressAppPool" />
<virtualDirectoryDefaults allowSubDirConfig="true" />
</sites>
7)通过在高级命令行提示符下执行以下命令重新启动 http 服务:
net stop http
net start http
8)将 MVC 项目属性页面的网页上的项目 URL 更改为以下内容:
http://localhost/
保存项目属性页触发了服务器的重新配置。
当我在 VS2010中启动 MVC 应用程序时,它正确地绑定到 http://localhost(在端口80上,默认的; 我没有包括让 IIS Express 在端口80上使用不安全/正常连接的所有步骤,但它们基本上是步骤5到7,但关注 http 和端口80,而不是 https 和端口443)。
但是,尝试转换到任何需要 https 的操作会导致“服务器拒绝连接”错误。
我做错了什么?