Reputation: 8091
I want to run my application through azure project in Visual Studio. But it runs it not as I expected. It runs the project like: http://127.0.0.1:82/
not as I want: http://testproject.com
.
Upvotes: 2
Views: 423
Reputation: 9409
If you are running the site on your local machine you can update your Hosts File so that it includes an entry for testproject.com that points to 127.0.0.1 while you're testing. When you're done testing make sure you remove the entry in this file.
Upvotes: 3
Reputation: 1885
Once you push it to the cloud you can use a dns cname to redirect your domain. Here's an article that explains it more http://blog.smarx.com/posts/custom-domain-names-in-windows-azure
Upvotes: 1