I’ve been doing a lot of Azure reading recently and it struck me that there are many different URLs in use that would be useful to record somewhere.
John Savill (@NTFAQGuy) has noted the main ones in his Windows IT Pro post on Azure URLs to whitelist but I’ll expand on them here to highlight the purpose of each one (and to add some extras):
*.windowsazure.com
https://manage.windowsazure.com/ is still used for the legacy (classic) Azure Service Manager (ASM) portal. http://windowsazure.com/ redirects to http://azure.microsoft.com/
*.azure.com
https://portal.azure.com/ is used for the Azure Resource Manager (ARM) portal. http://azure.com/ redirects to http://azure.microsoft.com/
*.*.core.windows.net
This URL pattern is used for access to Azure Storage:
- File access: https://storageaccountname.file.core.windows.net/sharename/foldername/foldername/filename
- Containers in blob storage: https://storageaccountname.blob.core.windows.net/containername/blobname
- Table storage: http://storageaccountname.table.core.windows.net/tablename
- Queue storage: http://storageaccountname.queue.core.windows.net/queuename
*.cloudapp.net
Domain name used for cloud services.
*.azurewebsites.net
Domain name used for Azure App Service websites. Each site also has Kudu at https://sitename.scm.azurewebsites.net.
*.database.windows.net
Domain name used for Azure SQL database.
*.trafficmanager.net
Domain name used for Azure Traffic Manager.
*.azureedge.net
Content Delivery Network (CDN) endpoints are available via http://cdnname.azureedge.net/.
*.streaming.mediaservices.windows.net
Domain name used for steaming media services (https://mediaservicename.streaming.mediaservices.windows.net/identifier/filename)
*.onmicrosoft.com
Domain name used for the Microsoft Online Services tenant (tenantname.onmicrosoft.com) – shared between multiple online services, including Azure but also Office 365, etc.
[Edited 12/9/16 – updated to include streaming media services and tenant URL]
One thought on “Microsoft Azure URLs”