I am trying to create a function app in azure ILB ASE but failed to open Kudu due to its inaccessibility. How I configure it correctly?
How will fix Inaccessible issue for function app created in ILB ASE in azure?
915 Views Asked by Nithin Mohan At
2
There are 2 best solutions below
0

Take a look at this issue - Document how to use Functions in an ILB ASE and this link, make sure you meet the requirements.
- Be in the same vnet as your ILB ASE
- Have a valid cert for the default domain and the default scm domain.
*.yourILBDomain.com
and*.scm.yourILBDomain.com
- In addition to having a certificate, you also must configure the DNS for the ILB domain.
Since the Azure function is deployed in ILB ASE, it can only be accessed from the virtual network. If you want to access the function outside the VNet, you need to deploy a public Azure application gateway to expose the internal endpoint. The Azure application gateway will work as a reverse proxy to route the incoming traffic to the appropriate endpoint.
References:
Integrate your ILB App Service Environment with the Azure Application Gateway
Private Function Apps in Azure Government using App Service Environment (ASE)