Windows Azure 上的 IIS 控制

发布于 2025-01-05 08:36:43 字数 98 浏览 0 评论 0原文

我知道可以在 Windows Azure 上托管多个网站,我想知道在部署云解决方案后是否可以添加更多网站。如果我无法,您是否必须向项目添加另一个站点,然后重新部署,否则这是不可能的。

I understand that one can host multiple websites on windows azure, I would like to know if I can add more websites to my cloud solution after I have already deployed it. If I am unable to would you have to add another site to the project then redeploy or it is not possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清君侧 2025-01-12 08:36:43

您可以在服务定义文件中定义站点。您可以将站点添加到服务定义文件中,然后重新部署应用程序层或进行 VIP 交换更新。对于后者,您不会错过任何一个节拍 - 您可以在暂存槽中部署新角色(这将在新站点中使用新配​​置),然后交换暂存槽和生产槽。请求将耗尽旧的请求,并将新的请求重定向到新的。瞧,您的新网站已上线。

这就是我们更新服务的方式(我们最近也刚刚添加了一个新网站)。

以下是有关 IIS 服务定义的更多信息:

http://msdn.microsoft.com /en-us/library/windowsazure/gg433059.aspx

以下是有关 VIP 交换的更多信息:

http://msdn.microsoft.com/en-us/library/windowsazure/ee517253 .aspx

You define your sites in your service definition file. You can add sites to your service definition file and either redeploy your application tiers or do a VIP swap update. With the latter, you won't miss a beat - you can deploy new roles in the staging slot (which will use the new config with the new sites) and then swap the staging and production slots. Requests will drain off the old and new requests redirected to the new. Voila, you're new site is live.

That's how we update our services (which we recently just added a new site as well).

Here's more info on IIS service definition:

http://msdn.microsoft.com/en-us/library/windowsazure/gg433059.aspx

Here's more info on VIP swap:

http://msdn.microsoft.com/en-us/library/windowsazure/ee517253.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文