Windows Azure 上的子域
我正在处理一个 Windows Azure 项目。它有两个网络角色 - 一个是面向公众的网站,第二个是管理网站,供我的客户对数据库等进行更改。
我原本希望能够为每个角色使用一个子域 - 例如mysite.com 和 admin.mysite.com(显然 CNAME 映射到 .cloudapp.net DNS 名称)。然而,Azure 似乎并没有这样做,而是有一个子域 (mysite.com),每个 Web 角色都有不同的端口。例如,我将 mysite.com:80 用于主要公共站点,将 mysite.com:8080 用于管理。
这是正确的吗?我是否无法拥有特定网络角色的子域?
预先感谢
约翰
I've got a Windows Azure project I'm working on. It has two web roles - one is a public-facing site, and the second is an administration site for my customer to make changes to the database etc.
I had expected to be able to use a subdomain for each role - so for example have mysite.com and admin.mysite.com (obviously CNAME-mapped to the .cloudapp.net DNS name). However it looks like Azure doesn't do this, and instead has one subdomain (mysite.com) with different ports for each web role. So, for example, I would have mysite.com:80 for the main public site, and mysite.com:8080 for the administration.
Is this correct? Is there no way I can have subdomains for particular web roles?
Thanks in advance
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是正确的。当然,您可以以单个角色响应两个子域。但 Windows Azure 中的多个 Web 角色对应于同一虚拟 IP 地址上的多个端口。
This is correct. You can, of course, respond to both subdomains in a single role. But multiple web roles in Windows Azure correspond to multiple ports on the same virtual IP address.