• 在vs2012中配置使用iisexpress


    在vs2012中配置使用iisexpress
     
    vs2012支持基于iisexpress的web站点调试,这样可以尽可能与生产环境具备一样的环境。
    但是,如果在vs2012中直接配置iis目录,通常会报错“无法创建虚拟目录”。
     
    解决办法为:
    1、找到IISExpress站点的配置文件,通常情况下位于:
    C:UsersAdministratorDocumentsIISExpressconfigapplicationhost.config
    2、在其中的configurationsystem.applicationHostsites节点下添加站点信息:
                <site name="Cloud.Tracker.WebUI" id="10">
                    <application path="/" applicationPool="Clr4IntegratedAppPool">
                        <virtualDirectory path="/" physicalPath="D:wudimaosrc runkManong.MaoCloud.Tracker.WebUI" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation="*:9999:tracker.5dmao.com" />
                    </bindings>
                </site>
    3、然后再vs2012的项目属性的web配置中,选择“使用本地IIS Web 服务器”,并填入url:http://tracker.5dmao.com:9999/,然后保存,项目即配置为可以通过iis express进行调试和开发。
     
    没有使用80端口,是因为本机的80端口被iis server所占用,本人没有测试停掉iis server然后尝试配置。
  • 相关阅读:
    python 如何将md5转为16字节
    linux非root用户执行开机启动程序
    python 正则表达式的使用
    Go随机数的使用
    Go 的类型断言type assertion
    go get中的...
    Go语言圣经
    python入门第三十五天--事件驱动模型(补)练习理解
    MySQL_Ubuntu安装
    JAVA入门基础--数据类型
  • 原文地址:https://www.cnblogs.com/mincyw/p/3423762.html
Copyright © 2020-2023  润新知