Questions tagged [azure-appservice]
700 questions
21
votes
4 answers
Azure App Service Getting error while deploying REACT JS application
Getting error while deploying to azure app services from the editor.
4:48:55 pm ppdedsrftwu2-appservice1: Starting deployment...
4:48:56 pm ppdedsrftwu2-appservice1: Creating zip package...
4:49:00 pm ppdedsrftwu2-appservice1: Zip package size: 1.09…

Prateek Naik
- 2,522
- 4
- 18
- 38
19
votes
4 answers
Remote debugging Azure App Service with VS 2019
How do I enable debugging from VS2019 for my .NET app running in an Azure App Service? The portal only supports 2015 and 2017.

Andy Sterland
- 1,872
- 1
- 14
- 19
17
votes
5 answers
Appropriate solution for long running computations in Azure App Service and .NET Core 3.1?
What is an appropriate solution for long running computations in Azure App Service and .NET Core 3.1 in an application that has no need for a database and no IO to anything outside of this application ? It is a computation task.
Specifically, the…

H2ONaCl
- 10,644
- 14
- 70
- 114
13
votes
1 answer
DotNet 5.0 Swagger is not loading in Azure App Service
i have a web api which is created using dotnet 5.0 and deployed to Azure App Service, It is running and swagger loads successful, but in Azure App Service the swagger is not loading also throws 404 error but API data loads successfully.

Vignesh Arvind
- 531
- 2
- 7
- 16
12
votes
1 answer
How to diagnose AspNetCore application not starting on Azure App Service?
We have multiple AspNetCore applications hosted on an Azure Web App as OutOfProcess and deployed as virtual applications with separate paths.
We have the same setup in different environments, all infrastructure and applications are deployed…

Sean K
- 161
- 5
10
votes
3 answers
Starting Powershell Script on Container Startup in Azure App Service
I'm trying to use Azure App Service Containers to host Azure DevOps Pipeline agents. I've got everything working in the sense that my agent runs great locally using Docker Desktop, but when I publish the image to the App Service, the startup command…

RMD
- 3,421
- 7
- 39
- 85
8
votes
2 answers
Azure: How to fix "The policy requires the caller '...' to use on-behalf-of (OBO) flow" when accessing Key Vault from App Service?
I have an ASP.net Core 3.1 application running in an Azure App Service. Having started using Azure Key Vault to store connection strings and other secrets for the app, the app is now crashing with an
"HTTP Error 500.30 ANCM In-Process Start Failure"…

urig
- 16,016
- 26
- 115
- 184
8
votes
5 answers
The MetadataAddress or Authority must use HTTPS unless disabled for development by setting RequireHttpsMetadata=false
net core application. I have added azure ad authentication. Below is my startup.cs file
services.AddAuthentication(x =>
{
x.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
…

Niranjan godbole
- 721
- 3
- 13
- 28
7
votes
2 answers
Connecting two App Services within the same VNet
I have two NodeJS App Services.
They can connect to each other with no problem using the URL which is created for App Services by default. (That is through the public internet.)
Then I successfully enabled VNet Integration for both App Services, and…

yellowtail
- 435
- 3
- 12
7
votes
1 answer
Error when moving Azure certificate to another subscription: Property id '' at path 'properties.keyVaultId' is invalid
I am trying to move my Azure AppService and all inked resources to another subscription through Azure portal. I am doing the following steps:
Go to my AppService's resource group
Select all resources within this resource group: AppService,…

Andre Borges
- 1,360
- 14
- 37
7
votes
3 answers
Deploy App Service with private endpoint via Azure DevOps
When I run release pipeline for Azure App service with private endpoint, Below error happens
Error: Failed to fetch Kudu App Settings. Error: Ip Forbidden (CODE: 403)
Any suggestion?

user2748366
- 143
- 1
- 1
- 8
7
votes
1 answer
Azure App Insights not collecting log from winston
I have a sample NodeJS application that's trying to log to Azure Application Insights. When I run, app successfully logs to console but Azure App Insights doesn't capture, either when running locally or on hosted Azure App Service. It only captures…

Brian Pham
- 551
- 9
- 23
7
votes
1 answer
Add virtual directory to an existing WebSite
Is it possible to add a virtual directory (like in IIS) to an existing website, hosted in Azure App Service. If so can this be done via the Azure Portal?

Ivan Studenikin
- 1,362
- 4
- 17
- 30
6
votes
2 answers
FeignClient: SunCertPathBuilderException: unable to find valid certification path to requested target
I've a spring boot application deployed in azure app service. It has a rest api defined like this:
@RestController
public class TestController {
@PostMapping("/test-api")
public TestDTO test() {
TestDTO testDTO =…

Drunken Daddy
- 7,326
- 14
- 70
- 104
6
votes
0 answers
Azure App Service "Application Logging (Blob)" does not delete logs after specified Retention Period
I've configured the "Application Logging (Blob)" for my Azure App Service to have a Retention Period of 1 day:
However, the logs are not purged after the Retention Period.
What am I missing? It seems like it should be straight forward, but there is…

DisplayName
- 475
- 2
- 13