Every time I launch the Azure emulator, it points to http://127.0.0.1
. This doesn't work for me because I use Facebook log in, which doesn't support numbers. So what I've done is this:
- I set
'mydomain.com'
as my domain for my Facebook app. I setdev.mydomain.com
as the return URL for the app. - I created a record in my HOST file, pointing
127.0.0.1
todev.mydomain.com
(according to Azure emulator web site is not visible by Facebook). - I updated my Web role project to use
http://localhost
with a application root URL override tohttp://dev.mydomain.com
, and I created a virtual directory for that. I also set the start URL for the project tohttp://dev.mydomain.com
. - I edited
%USERPROFILE%\My Documents\IISExpress\config\applicationhost.config
to use*:80:dev.mydomain.com
(according to Using Custom Domains With IIS Express).
So I'd say I have everything in place to make this work. But every time I start the Azure emulator, it launches http://127.0.0.1
. How do I make it launch http://dev.mydomain.com
instead?
Anyone?