I've setup Azure CDN (Verizon Premium) and have it serving static files from a Blob Storage.
domain is http://abc.domain.com
I also have an azure function at
POST https://flows1.azurewebsites.net/api/survey
now from my page
http://abc.domain.com/index.html
I need to call my azure function.
Am I able to use the CDN for a URL re-write to take
POST http://abc.domain.com/api/survey
and have the CDN pass through to
POST https://flows1.azurewebsites.net/api/survey
I want to avoid cross-domain scripting issues and am hoping this configuration will allow me to do so.
Thanks for your help,