Add many domains to an azure web site

后端 未结 1 733
再見小時候
再見小時候 2021-01-12 10:00

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

相关标签:
1条回答
  • 2021-01-12 10:18

    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.

    0 讨论(0)
提交回复
热议问题