zoukankan      html  css  js  c++  java
  • Visual Studio IISExpress SSL 自证证书 (Self-Signed)

    找到IIS Express的安装目录,通常在 "C:Program Files (x86)IIS Express",然后在CMD里运行

    C:Program Files (x86)IIS ExpressIisExpressAdminCmd.exe setupSslUrl -url:https://localhost:8443 -UseSelfSigned

    以上就可以为你的 localhost URL 生成一张自证证书,但浏览器还未信任这张证书,想要浏览器信任它就要做以下操作:

    1. 运行 -> mmc

    2. 菜单 -> [File] -> [Add/Remove Snap-in...]

    3. [Certificates] -> [Add >]

     

    4. [Computer account] -> [Next]

    5. [Local computer] > [Finish] -> [OK]

    6. [Certificates (Local Computer)] > [Personal] > [Certificates], 选择 Firendly Name 为 “IIS Express Development Certificate” 的 localhost 证书,右键 Copy.

     

     7. [Trusted Root Certification Authorities] > [Certificates] > 右键 > [Paste]

    8. 重启浏览器,Visual Studio 重新运行你的 Program, 完!

  • 相关阅读:
    表单
    框架
    表格
    列表
    标签
    封装类(包装类)
    常见类 --Object
    日志
    异常
    选择结构
  • 原文地址:https://www.cnblogs.com/badtree/p/15353135.html
Copyright © 2011-2022 走看看