My startup company got an Azure BizSpark subscription. I have just created an API App and App service plan. Our company is located in Northern Europe but the location of both the API service and the App service plan is "South Central US". I did not see any options to specify the location when I created the API app. I also don't see any options to change the location now that the app is created. Is this a limitation of the BizSpark subscription or can I somehow change the location?
-
Have a look at this: https://azure.microsoft.com/en-gb/blog/azure-data-center-migration-just-got-easier/ – Rob Sedgwick Nov 30 '17 at 09:43
-
I'm afraid to say I have this problem, with the wrong region and also on BizSpark but I don't remember setting up the region. – Tez Wingfield May 15 '18 at 16:20
3 Answers
You cannot change the location of an app service plan, regardless of subscription type. You simply need to create a new app service plan in the region you want, and then redeploy your code.

- 69,407
- 21
- 141
- 189
-
2Maybe related UserVoice: https://feedback.azure.com/forums/169385-web-apps/suggestions/20090146-can-switch-region-in-anytime – hakatashi Sep 05 '17 at 07:56
-
2Not ideal solution but I guess that is why Microsoft give you free credit to find these things out before you start on real developments. – Chris Mills Jan 05 '18 at 07:22
-
1azure web app has "clone app" feature it will let you clone app into different region also – Arjun Vachhani Dec 18 '18 at 12:39
-
Whilst you can't move the server you can backup of a server then create a new one using the backup as the base.
This is often easier than starting from scratch.

- 2,518
- 4
- 39
- 65
-
5Why was this downvoted. It is literally the only solution other than starting a new server from scratch. – rollsch Jul 19 '17 at 00:12
-
What is 'the server' referencing in relation to App Service & App Service Plan? – ttugates Oct 30 '20 at 13:36
-
In the same direction as @David Makogon and @Arjun Vachhani stated:
The region in which your app runs is the region of the App Service plan it's in. However, you cannot change an App Service plan's region. If you want to run your app in a different region, one alternative is app cloning. Cloning makes a copy of your app in a new or existing App Service plan in any region.
Source: Move an app to a different region from Microsoft Docs

- 1,561
- 1
- 19
- 32