Questions tagged [azure-functions-proxies]

4 questions
1
vote
0 answers

Azure Functions Proxy seems to be caching responses

We have an interesting behaviour that we are trying to understand/workaround. We have an Azure Function running on a consumption host that has nothing but proxies on it. One of these proxies points to an Azure CDN endpoint, that in turn points to an…
0
votes
1 answer

Using HTTPS with Azure functions running on Azure iot Edge

Background I have a system running on Azure iot edge. The system is composed of multiple modules that expose REST interfaces. To make everything look tidy from the client's perspective (a browser on another machine in the same network) we use an…
0
votes
1 answer

Azure Functions Proxy backendUri with request.headers value

Azure Functions Proxies support the usage of AppSettings in the backendUri and request.headers in requestOverrides. { "$schema": "http://json.schemastore.org/proxies", "proxies": { "myProxyName": { "matchCondition": { …
0
votes
1 answer

Is it possible to pass through a backend url endpoint that is relative to that url through an Azure Function Proxy or perhaps api management

As of now, from what I see, the only way to use Azure Function Proxy is to re-route an existing api is to call upon that api directly. For example: Backend URL https://gateway-api.com/api/getSomething Route Template /api Proxy…