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>

  • 相关阅读:
    打开外部程序
    检测是否渲染
    maxsxript 坐标转换 函数
    实用 SQL 语句
    【整理】一些有用的学习资源链接
    关于 static 和 final 的一些理解
    Java8新特性时间日期库
    推荐一套后台管理系统
    Java API 之 Object
    【软件体系结构】架构风格与基于网络应用软件的架构设计
  • 原文地址:https://www.cnblogs.com/viviancc/p/4042373.html
Copyright © 2011-2022 走看看