Vikram K
Vikram K

Reputation: 2686

How can I put a URL instead of an IP address in Azure Hosted application?

Hi I have hosted my aplication through IIS on Azure Virtual Machine.Now the generated link for access looks like this :

http://13.76.241.183/xyzApplication

However, I want it to look like:

https://CloudApp.net.xyzApp/xyzApplication

Any Fixes??

Upvotes: 1

Views: 1350

Answers (2)

Gandhali Samant
Gandhali Samant

Reputation: 877

Is your virtual machine a classic VM or ARM VM? The above answer is correct for classic Virtual machine. There is no concept of cloud service in ARM VMs so your url becomes something like (DomainNamelabel).(location).cloudapp.azure.com

Please check - https://blogs.msdn.microsoft.com/cloud_solution_architect/2015/05/05/creating-azure-vms-with-arm-powershell-cmdlets/

UPDATE- For ARM VM, if you go to the portal, click on VM and then in the essentials click on the links under Public IP address/DNS name label, you will open a blade which will show you the complete link

Upvotes: 1

Pedro G. Dias
Pedro G. Dias

Reputation: 3222

Your virtual machine should have a service name, i.e. mywebserver.cloudapp.net, to which you can reference it.

It is usually the VM name that is the service name, or something like it. If you log on to manage.windowsazure.com, find your VM, and click "Dashboard", you will see it's DNS name on the right bottom part of the dashboard screen.

Upvotes: 2

Related Questions