Azure根据项目配置设置hostHeader
hostHeader 可以在 ServiceDefinition.csdef 文件中设置为
<Site name="Web">
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" hostHeader="www.mysite.com"/>
</Bindings>
</Site>
如何根据我的项目配置更改此设置?
例如,当我的项目以调试模式发布时,hosetHeader 应设置为 test.mysite.com
, 当项目以发布模式发布时,hostHeader 应设置为 www.mysite.com
hostHeader can be set in ServiceDefinition.csdef file as
<Site name="Web">
<Bindings>
<Binding name="Endpoint1" endpointName="Endpoint1" hostHeader="www.mysite.com"/>
</Bindings>
</Site>
How can I change this setting according to my project configuration?
e.g. when my project is published in debug mode, hosetHeader should be set to test.mysite.com
,
and when project is published in release mode, hostHeader should be set to www.mysite.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用 Visual Studio 10 配置转换。要使用 Azure 配置进行转换,请参阅此答案。
We use Visual Studio 10 config transformations. To get transformations working with Azure configs, see this answer.