zoukankan      html  css  js  c++  java
  • IIS Express start introduction and applicationHost modification

    1. First you need create a web project in VS

    2. When you finish your project, click start then IIS Express will start

    3. The IIS express will only accept the localhost request

    4. Stop IIS Express, then you need to modify applicationhost.config file,

      for example, it is "C:UserslincheDocumentsIISExpressconfigapplicationhost.config"

    5. update the bindingInformation to accpet the more wild domain

    before

                <site name="OrionPreview" id="2">
                    <application path="/" applicationPool="Clr4IntegratedAppPool">
                        <virtualDirectory path="/" physicalPath="D:OrionPreviewOrionPreviewOrionPreview" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation="*:33809:localhost" />
                    </bindings>
                </site>

    after

               <site name="OrionPreview" id="2">
                    <application path="/" applicationPool="Clr4IntegratedAppPool">
                        <virtualDirectory path="/" physicalPath="D:OrionPreviewOrionPreviewOrionPreview" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation="*:33809:*" />
                    </bindings>
                </site>

  • 相关阅读:
    初始Openwrt
    Angular CLI 使用教程指南参考
    Visual Studio Code怎么在同一窗口打开多个项目文件?
    mysql查看数据表是否有重复数据
    Angular UI框架 Ng-alain @delon的脚手架的生成开发模板
    VS2010 WDK7.1.0 Win7_64
    Nodejs使用TLS
    python定时执行方法
    Visual Studio Code 使用Git进行版本控制
    VSCode中设置Python解释器和pylint的波浪线问题
  • 原文地址:https://www.cnblogs.com/viviancc/p/4042373.html
Copyright © 2011-2022 走看看