Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I modify the Location of my web site in Windows azure?

When configured my website on windows azure, I chose Est of USA for the Web site, and North Europe for database.

As you can guess, the performances are very bad, most of my users are in Europe. Looking on msdn, they said it is not possible to change database of location.

So how can I change the location of my web site?

like image 471
Thomas Avatar asked Mar 09 '13 16:03

Thomas


1 Answers

You need to redeploy your website code to a new Web Site, located in Europe. If you're using git, this should be as simple as setting up a new remote location to the new Web Site and re-doing a push.

In the future: Always deploy website + database in the same datacenter. This avoids performance latency as well as data egress costs out of the data center.

like image 66
David Makogon Avatar answered Sep 28 '22 14:09

David Makogon