Azure CDN with HTTPS not working -


i want have static files (css,js,images) on azure cdn, followed tutorial:

https://azure.microsoft.com/en-us/documentation/articles/cdn-serve-content-from-cdn-in-your-web-application/

i had in app following lines pointing files in azure storage blob container:

<link href="https://stact1.blob.core.windows.net/cdn/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="https://stact1.blob.core.windows.net/cdn/content/animate.css" rel="stylesheet" type="text/css" /> <link href="https://stact1.blob.core.windows.net/cdn/content/style.css" rel="stylesheet" type="text/css" /> 

and website renders fine http://screencast.com/t/6m9m2s4d

however according tutorial should change url use cdn. changed above to:

<link href="https://az780954.vo.msecnd.net/cdn/content/bootstrap.min.css" rel="stylesheet" type="text/css" />     <link href="https://az780954.vo.msecnd.net/cdn/content/animate.css" rel="stylesheet" type="text/css" />     <link href="https://az780954.vo.msecnd.net/cdn/content/style.css" rel="stylesheet" type="text/css" /> 

then screwed up: http://screencast.com/t/nem3sdqb

if remove https, see no connections done on network tab on developer tools, if put https, see 403 errors.

the problem https enabled on cdn http://screencast.com/t/rgvtj9uzq1

given https links working issue saw have been due delay ssl configuration propagate. configuration changes azure cdn can take 60 minutes propagate cdn pop's (i.e. cdn data centers). cdn configuration item has delay associated it. content automatically cached individual pop's when clients makes request content. if clients don't make requests content no content cached on cdn pop's.


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -