Questions tagged [azure-webapps]

Azure App Service Web Apps (or just Web Apps) is a service for hosting web applications, REST APIs, and mobile back-ends. There are many supported languages such as .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on either Windows-based or Linux-based environments.

528 questions
32
votes
5 answers

What is the difference between "Azure Web app" and "Azure App Service"?

I'm quite new to Azure, trying to learn how to explore what are the possibilities of publishing a website on azure, to be a bit more at ease to do the the AZ-204. On the azure dashboard, I can create "Azure web apps", "Azure app service"(not…
J4N
  • 19,480
  • 39
  • 187
  • 340
23
votes
5 answers

Deployed angular app to Azure web app - But showing the default Azure page

I created a Web App in Azure to host an angular application. I selected the runtime as bellow: But my local setup details: Node version: v13.0.1 Angular version: 8.2.11 I used Anguler cli to create the application and then I ran ng build --prod…
15
votes
1 answer

Run async code during startup in a ASP.Net Core application

After changing the signature of the function ConfigureServices to be asynchronous (originally it was just a void synchronous function and the application worked perfectly fine), I get the following error: Unable to find the required services.…
Henry Zhu
  • 2,488
  • 9
  • 43
  • 87
13
votes
3 answers

Changing the target framework in an Azure web app

I would like to publish an ASP.NET Core 2.1 website to Azure using an Azure Web App to host it. When creating the Azure Web App on the Azure portal, one of the settings is "Runtime Stack". In this case I would set it to ".NET Core 2.1" to match the…
Gary
  • 1,735
  • 4
  • 19
  • 36
12
votes
4 answers

How to deal with naked domains when using azure managed certificates

I'm trying to use the recently announced (in preview) managed certificates for Azure app service. One of the limitations is that you can't get one for naked domains. eg.: you can get one for www.domain.com, but not domain.com. In my (current)…
Thomas Woelfer
  • 533
  • 5
  • 21
11
votes
4 answers

"Key vault reference error" in azure web app configuration setting

I have a private certificate that was generated by azure for a web app for linux containers. I want to pass this value to my .net core app via the web app configuration settings in the the azure portal. This is part of a pipeline CI-CD process and…
J King
  • 4,108
  • 10
  • 53
  • 103
11
votes
1 answer

Azure Web App + Node.js + Azure AD = Error 431

I created a Node.js based web application, running in an Azure Web App, that I wanted to put behind an Azure Active Directory authentication. After activating "App Service Authentication", the login process works normally, however upon returning to…
11
votes
4 answers

Deploy web app to Azure but still showing Microsoft page instead

I'm trying to deploy my web app to Microsoft Azure and everything goes fine in visual studio. But when it launches it shows: Hey, App Service developers! Your app service is up and running. Time to take the next step and deploy your code. How…
Peter
  • 113
  • 1
  • 1
  • 4
10
votes
5 answers

deployment Failed with Error: Package deployment using ZIP Deploy failed. Refer logs for more details

I am trying to deploy my code to azure app service using git. But I am getting error "deployment Failed with Error: Package deployment using ZIP Deploy failed. Refer logs for more details". It was working perfectly 2 days back but suddenly it starts…
8
votes
1 answer

Azure webapp: Stack settings

I can set my stack for a webapp through the portal: I deploy my infra through an ARM template: "apiVersion": "2015-08-01", "type": "Microsoft.Web/sites", "name": "[variables('name')]", "location": "[parameters('location')]", "dependsOn":…
mslot
  • 4,959
  • 9
  • 44
  • 76
7
votes
1 answer

ASP.NET WebApp in Azure using lots of CPU

We have a long running ASP.NET WebApp in Azure which has no real endpoints exposed – it serves a single functional purpose primarily reading and manipulating database data, effectively a batched, scheduled task, triggered by a timer every 30…
6
votes
3 answers

Azure Cli How to enable Application Insights for webapp

Consider the following code. It creates an application insight, then it retrieves the instrumentationkey and assigns it to my webapp. az monitor app-insights component create -g $resourceGroup --app $webapp --application-type web --kind web…
Sam
  • 13,934
  • 26
  • 108
  • 194
6
votes
1 answer

How to dynamically update configuration property in YAML file using node.js application

I want to update the attribute dynamically in YAML configuration file using node.js application. I have my secrets configured in KeyVault and it has been referenced in App Service configuration. I want to update those secrets in YAML file through…
simbu94
  • 1,012
  • 2
  • 10
  • 22
6
votes
2 answers

Azure Portal doesn't see DevOps organization [account problems?]

I'm having trouble connecting my Azure Web App to my Azure DevOps organization. I somehow managed to do it for one Web App (by selecting creating a new 'DevOps Project') but now struggle at setting a new WebApp to link to that same DevOps pipeline.…
Lucas
  • 83
  • 1
  • 5
6
votes
3 answers

Azure ad app - Updating manifest programmatically

I am trying to find a way to update an Azure Ad registered app's manifest via powershell, utilizing a json file. The Json file contains all of the app roles, and i would like to simple inject the App Roles: [] right into the App Role Brackets Is…
1
2 3
35 36