Adding an azure web app into a App service environment

跟風遠走 提交于 2019-12-21 20:27:16

问题


I have a web application on Azure which was NOT created in an App Service Environment (ASE). Now I have a specific requirement that forces me to create an ASE and add the existing web application into the ASE. Is it doable ? How ?


回答1:


For a WebApp to be inside an ASE, it has to belong to an AppServicePlan whose Location is name of the ASE and is of Premium Sku. For that reason you can't change the AppServicePlan of your existing WebApp and point it to that in the ASE.

What you can do is Clone the App , for you to be able to do this

1) You need to have an AppServicePlan inside ASE that is tied to a worker pool. If not already present, create a new AppServicePlan and select the ASE you created as the Location.

2) In your existing WebApp Settings there is an options to Clone (if not already in Premium SKU, it will ask you to upgrade). You can use this option to create a copy of your WebApp inside the ASE and tie to the AppServicePlan you created in step above.

Here's a link that provides info on how to clone a WebApp into an existing AppServicePlan : https://azure.microsoft.com/en-us/documentation/articles/azure-web-sites-web-hosting-plans-in-depth-overview/



来源:https://stackoverflow.com/questions/39358173/adding-an-azure-web-app-into-a-app-service-environment

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