Questions tagged [azure-function-app-proxy]
75 questions
0
votes
1 answer
Change my existing Azure function App URL(Login/landing page url) with static (which i want to get redirected to previous one) one?
I have seen the Azure portal for the same and referred various sources. It was mentioned to do the changes from Proxies section in Azure function App.
Please let me know how it can be achieved?

Ashish Shukla
- 129
- 1
- 10
0
votes
1 answer
Negate bool app setting in Azure Function Proxies
I've got a bool app setting in my Azure Function called show_not_available_page:
"show_not_available_page": true
Depending on this setting I want to disable and enable proxy paths in proxies.json, e. g.:
"root": {
"disabled":…

MatterOfFact
- 1,253
- 2
- 18
- 49
0
votes
1 answer
Azure Function - only deploy updated proxies.json
I have a scenario, where new function apps are being create every week and need to (automatically) proxy them form main function app.
I could not find any way to "just" updated proxies.json without re-deploying entire function app.
Any CLI Command /…

bugBurger
- 6,950
- 9
- 32
- 39
0
votes
1 answer
Route traffic through Azure Function proxy based on host header
I'm trying to serve multiple sites through function proxy.
Site1 => /docs => docs.example.com/
Site2 => /docs => docs.contoso.com/
It's possible through frontdoor. But just wondering if this is possible with Azure function proxy ?

Venkata Dorisala
- 4,783
- 7
- 49
- 90
0
votes
1 answer
how to copy blob data and store it in sub directory by using function app
I have a blob in my source virtual folder and I need to move the source blob to another virtual folder and delete the source blob by using azure function app
copying blob data from 1 directory to another
deleting the source blob
please guide me…

karthik kasula
- 67
- 3
- 9
0
votes
1 answer
How to Edit Function-app Code in Azure portal
I published the Function-App to Azure and I am using Timer Trigger to Schedule the Function-app at a particular time
I want to change the schedule Time how to Edit the Function-App Code
I tried AppserviceEditor
it gives an error
Failed to save…

Karthik Kasula
- 7
- 2
- 7
0
votes
1 answer
Azure function proxy - required request header
I would like to use an Azure function proxy to restrict access to an API by requiring that a specified request header X-MY-HEADER is present. I don't want to actually check the value of the header here, just that it is present.
I can't find any…

Andy Cook
- 121
- 1
- 5
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…

Christian Matthew
- 4,014
- 4
- 33
- 43
0
votes
1 answer
Why does Azure Function Proxy fails with socket exception under stress?
I am facing an exception with Azure Functions proxy
I am using Premium plan with VNet integration. The proxy route the requests to a page on IIS on a VM in the VNet. It works pretty fine, but under stress (2000 requests over 60 seconds), it starts…

Raphaël
- 427
- 5
- 14
0
votes
1 answer
Not Found - GET https://registry.npmjs.org/functionscdn.azureedge.net - Not found
npm i -g azure-functions-core-tools@3 --unsafe-perm true --force --trusted-host aunctionscdn.azureedge.net
Hi all, i have been trying to install azure-functions-core tools using above command behind my company proxy, but return this error. need some…

sirimiri
- 509
- 2
- 6
- 18
0
votes
1 answer
Azure functions proxies setting redirects to backendUri Url
I have azure function app, where I want to use proxy to show static page to the users(which is hosted on another domain) after accessing the function app link like example below
https://myfunctionapp1.azurewebsites.net/
{
"$schema":…

Kumari Dimple
- 343
- 2
- 4
- 14
0
votes
2 answers
Service Endpoint not working for Azure Functions Proxies, behind an Application Gateway
I'm using an Application Gateway (WAF) to route all traffic to a Proxy Function App (Premium EP1). The function app in turn takes URLs like the following and directs them to their correct Web API. (I realise this is a feature of the Path Based…

David C
- 664
- 1
- 8
- 21
0
votes
1 answer
Access on premise rest/soap services from azure functions
we have a on premise restful and few soap based services. which needs to be accessed from azure function app. Need to know what are the ways we can access on premise services from function app.

satish
- 51
- 10
0
votes
1 answer
Azure Function App access to on-prem resource (Gateway?)
I have a requirement to use an Azure Function App to query data in an on-premise SQL database, extract that data, dump it to a blob.
By these requirements ADF is not permissible.
The on premise SQL engine is behind a firewall.
How does Azure/the…

Steve Lyle-CSG
- 117
- 1
- 4
- 12
0
votes
1 answer
How to pass a parameter to a logic app invoked from an alert
I have an Alert (Scheduled Query Request) that invokes an Action Group that invokes a Logic App that executes a Function App. The logic app is HTTP triggered.
I would like to deploy the same alert on Test, Pre-Prod, Prod and pass the "environment"…

Nicolae Daian
- 1,065
- 3
- 18
- 39