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 en开发者_高级运维abling endpoint how can i put content on CDN and how can i access that content?
can anyone please explain me that?
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
It's quite straight forward to do, and can be enabled from the Management Console.
Follow these steps:
- Log in to the Windows Azure Management Console.
- Go to the CDN option in the menu on the left.
- Press the 'New Endpoint'.
- Select the storage account you wish to enable.
There's also a walkthrough here: http://msdn.microsoft.com/en-us/library/gg680301.aspx
精彩评论