传统上,我在本地主机开发服务器上使用自定义域。大致如下:

dev.example.com
dev.api.example.com

这为我在使用外部api(如Facebook)时提供了很大的灵活性。这在过去与内置的Visual Studio Development Server一起工作得很好,因为我所需要做的只是向指向127.0.0.1的DNS记录添加一个CNAME。

但是,我还不能让它与IIS Express一起工作。我所做的一切努力似乎都失败了。我甚至向applicationHost添加了正确的XML配置。IIS Express的配置文件,但它似乎不能像真正安装IIS那样识别有效的条目。

<binding protocol="http" bindingInformation="*:1288:dev.example.com" />

每当我输入这一行并尝试请求http://dev.example.com:1288时,我都会收到以下消息:

错误请求-无效的主机名

有人知道我是否遗漏了什么明显的东西吗?或者IIS Express团队真的缺乏预见到这种类型的使用?


当前回答

按照Jaro的建议,我可以在Windows XP和IIS Express(通过Web Matrix安装)下进行小的修改,并且不局限于localhost。这只是一个正确设置绑定的问题。

Use WebMatrix to create a new site from folder in your web application root. Close WebMatrix. Open %USERPROFILE%\My Documents\IISExpress\config\applicationhost.config (Windows XP. Vista and 7 paths will be similar) and edit the site definition in the <sites> config block to be along the lines of the following: <site name="DevExample" id="997005936"> <application path="/" applicationPool="Clr2IntegratedAppPool"> <virtualDirectory path="/" physicalPath="C:\path\to\application\root" /> </application> <bindings> <binding protocol="http" bindingInformation="*:80:dev.example.com" /> </bindings> <applicationDefaults applicationPool="Clr2IntegratedAppPool" /> </site>

如果运行MVC,则将applicationPool设置为“Integrated”选项之一。

其他回答

像上面的Jessa Flint一样,我不想手动编辑.vs\config\applicationhost。config,因为我希望更改能够持久地保存在源代码控制中。我也不想有一个单独的批处理文件。我使用的是VS 2015。

项目属性→构建事件→预构建事件命令行:


::The following configures IIS Express to bind to any address at the specified port

::remove binding if it already exists
"%programfiles%\IIS Express\appcmd.exe" set site "MySolution.Web" /-bindings.[protocol='http',bindingInformation='*:1167:'] /apphostconfig:"$(SolutionDir).vs\config\applicationhost.config"

::add the binding
"%programfiles%\IIS Express\appcmd.exe" set site "MySolution.Web" /+bindings.[protocol='http',bindingInformation='*:1167:'] /apphostconfig:"$(SolutionDir).vs\config\applicationhost.config"

只需确保将端口号更改为所需的端口。

赞成的答案是有效的。这些信息对我帮助很大。我知道这个话题之前已经讨论过了,但我想添加一些额外的输入。 人们说您必须“手动编辑”应用程序。“Users IISExpress/ config”目录下的config文件。这对我来说是个大问题,因为我想通过源代码控制将配置分发给不同的开发人员。

我发现你可以使用“C:\Program Files\IIS Express\appcmd.exe”程序自动更新这个文件。找到控制参数需要一段时间,但我将在这里分享我的发现。本质上,您可以创建一个.bat文件,运行NETSH命令和APPCMD.EXE(如果您愿意,也可以换出一个主机文件),以便使用IIS Express轻松配置主机头。

你的install bat文件看起来是这样的:

netsh http add urlacl url=http://yourcustomdomain.com:80/ user=everyone 

"C:\Program Files\IIS Express\appcmd.exe" set site "MyApp.Web" /+bindings.[protocol='http',bindingInformation='*:80:yourcustomdomain.com']

我也会做一个“卸载”bat文件,将清理这些绑定..(因为很多时候我只是伪造DNS,这样我就可以在主机名敏感的代码上工作)

netsh http delete urlacl url=http://yourcustomdomain.com:80/

"C:\Program Files\IIS Express\appcmd.exe" set site "MyApp.Web" /-bindings.[protocol='http',bindingInformation='*:80:yourcustomdomain.com']

我希望这些信息对某人有所帮助。我花了一点时间才发现。

在使用Visual Studio 2012和IIS Express时,更改现有绑定不会永久工作。(它可能在你关闭VS之前有效,但在那之后,事情就变得非常混乱了。)

关键是保持现有的本地主机绑定并在其之后添加一个新绑定。

除非您以管理员身份运行,否则还需要运行netsh add urlacl(以标准用户身份授予自己运行非本地主机站点的权限)。

如果要允许任意主机名,整个过程如下:

创建您的web应用程序,并找出它正在使用的端口(参见项目属性,web选项卡,项目Url)。 在管理员提示符下,运行以下命令(将portnumber替换为您在#1中计算出的端口号): Netsh HTTP添加urlacl url="http://*:portnumber/" user=everyone Netsh HTTP添加urlacl url="http://localhost:portnumber/" user=everyone

您也可以使用您的用户名(DOMAIN\ user),而不是所有人,以获得更好的安全性。

Open applicationhost.config (usually under My Documents\IIS Express\config), and find the element with your port number. Add one more binding with the host name you want (in this case, *). For example: <site name="MvcApplication1" id="2"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="C:\sites\MvcApplication1" /> </application> <bindings> <binding protocol="http" bindingInformation="*:12853:localhost" /> <binding protocol="http" bindingInformation="*:12853:*" /> </bindings> </site>

注意,如果想打开所有主机名(*),需要两个netsh命令(一个用于*,一个用于localhost)。如果您只想打开一个特定的主机名,则不需要严格地使用第二个netsh命令(localhost);只有具有特定主机名的一个就足够了。

在我的WebMatrix IIS Express安装中,从“*:80:localhost”更改为“*:80:custom”。hostname“没有工作(“坏的主机名”,即使有适当的etc\hosts映射),但“*:80:”工作-并且没有其他答案所要求的额外步骤。注意,“*:80:*”不会这样做;去掉第二个星号。

我使用iisexpress-proxy(从npm)来实现这一点。

https://github.com/icflorescu/iisexpress-proxy