Reputation: 8606
I have hosted on web application on window azure platform and now client suggest me to put this video using CDN section but i don't know about how can i do that.
I just go through msdn blogs but not cleared yet that concept, after enabling endpoint how can i put content on CDN and how can i access that content?
can anyone please explain me that?
Upvotes: 0
Views: 585
Reputation: 9399
If you're already enabled the endpoint for a storage account, then all you need to do is upload your content to a public blob container either in code of you can use a one of the storage explorers. Then to access the content you can just replace the myaccount.blob.core.windows.net
part of the url to your blob with [Default HTTP End Point from the portal].vo.msecnd.net
Upvotes: 1
Reputation: 2353
It's quite straight forward to do, and can be enabled from the Management Console.
Follow these steps:
There's also a walkthrough here: http://msdn.microsoft.com/en-us/library/gg680301.aspx
Upvotes: 0