Add many domains to an azure web site

耗尽温柔 提交于 2019-12-01 01:20:22

问题


I'm migrating a pretty serious multi-tenant application to Azure, and one of the challenges I see coming is that it hosts over a hundred domains.

On the Azure side, the only way I see to add a custom domain is hand-entering them via the portal. I would really like to script this out with Azure PowerShell or (perhaps less desirable for this one-off operation) one of the .Net APIs.

I did find this, which shows that it can be done with one of the REST APIs: Add a domain to an Azure web site via code

Is there anything for PowerShell?


回答1:


you can use -

Set-AzureWebsite -Name "ramisample" -HostNames @('www.abc.com', 'abc.com')

Make sure you point the CNAME records before adding them as domains.



来源:https://stackoverflow.com/questions/21036060/add-many-domains-to-an-azure-web-site

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!