Questions tagged [azure-web-app-service]

Use this tag for questions relating to web applications residing on Azure. Azure App Service is a cloud-based platform for hosting web applications, REST APIs, and mobile back ends. It was formerly known as Azure Web Sites. You can deploy applications written in a variety of languages: .NET, .NET Core, Java, Ruby on Rails, Node.js, PHP and Python, using either a Windows or Linux container.

See https://learn.microsoft.com/en-us/azure/app-service/app-service-web-overview for further information.

11621 questions
3
votes
2 answers

Troubleshooting 500.31 ANCM on Azure App Service

After upgrading a project from ASP.NET Core 3.0 to ASP.NET Core 3.1, my application stopped working on Azure App Services—but only when published using continuous deployment from Azure DevOps Pipelines. (Similar to another question, it continues to…
3
votes
1 answer

Flask app absolute url redirecting in http instead of https in azure app services

I have a flask app that is deployed to azure app services. The app service has SSL certificate that is managed by azure app services. It has also enabled to use only https from TSL/SSL settings in the app services. I have a couple of absolute…
3
votes
1 answer

Publishing .NET Core 3.1 web app to Azure App Service Linux using VS 2019 showing Welcome screen

I am trying to deploy my .NET Core 3.1 MVC web application on Azure App Service Linux using Visual Studio 2019. All that I can see after deployment is the welcome screen shown below. I checked some SO links which asked me to check whether the files…
prinkpan
  • 2,117
  • 1
  • 19
  • 32
3
votes
1 answer

ASP.NET Core 3.1.2 app fails to start in Azure App Service

I've updated my app from ASP.NET Core 2.2.0 to 3.1.2 and it does not run in Azure App Service any more. The v3.1.2 runtime is not listed as supported on the App Service host machine. The Kudu api/diagnostics/runtime call returns only older…
3
votes
1 answer

Python webapp on Azure App Service writing to a SQL Server database: horribly complicated?

I have a Python webapp deployed on Azure App Service (supposedly a simple way to deploy a webapp). I want it to write to a SQL database (Azure SQL). That's it. This led me down a rabbit-hole. The support for this use-case is abysmal! To write to a…
Gilead
  • 1,263
  • 10
  • 21
3
votes
1 answer

Azure App Service - Securing function with two B2C policies

We have a function, running in Azure App Service handling authenticated calls, via Easyauth for user accounts that are hosted in an Azure AD B2C tenant. These accounts were previously self-served, via a B2C built-in SignUp&SignIn policy. We’re…
3
votes
1 answer

Azure docker: linuxFxVersion vs DOCKER_CUSTOM_IMAGE_NAME

I have these three release steps in Azure De Ops: AzureRmWebAppDeployment@4 - which deploys a docker image to my staging site AzureResourceGroupDeployment@2 which deploys all the appsettings and properties with an ARM…
3
votes
1 answer

Azure App Service and HttpContext.RequestAborted Cancellation Token

I have a dotnet core 3.1 application that is computational intensive, i.e. response for request might delay for a few minutes, accordingly I am monitoring the FIN or HttpContext.RequestAborted, Lets say an example of code would be public async…
3
votes
4 answers

Deploy Angular on Azure with static website fallback problem

I'm trying to deploy my Angular app to the Azure static websites. I configured the environment following this tutorial: Medium tutorial for Azure static websites The problem that I have is the fallback in the case I try to access for example…
NikNik
  • 2,191
  • 2
  • 15
  • 34
3
votes
1 answer

how to import a publish profile in visual studio mac

I cannot see my app service by default in the Publish menu, because I have two subscriptions and the default one is not the one with the app service I need. Since there is no option there to change subscriptions, nor to import a profile, I can only…
roberto tomás
  • 4,435
  • 5
  • 42
  • 71
3
votes
1 answer

Configuring an app service certificate seems to require write access to the Key Vault, IBYP?

The following terraform configuration is supposed to: Obtain the id of the relevant Key Vault Obtain the id of the certificate secret Setup custom hostname binding Setup app service certificate data "azurerm_key_vault" "hosting_secondary_kv" { …
mark
  • 59,016
  • 79
  • 296
  • 580
3
votes
1 answer

Error: Deployment failed: ERROR_DESTINATION_NOT_REACHABLE when deploying to App Service from Azure DevOps Services

I am trying to deploy my site to an App Service from Azure DevOps Services. However, when I try to deploy the site, the Deploy Azure App Service task fails with the error message: Error: Error Code: ERROR_DESTINATION_NOT_REACHABLE More…
RiddleMeThis
  • 851
  • 1
  • 8
  • 18
3
votes
1 answer

Large POST requests causes timeout in Asp.Net Web API when using client certificates

Background Our API allows users to upload large files, like PDFs, JPGs and PNGs. Recently we have experienced a ton of requests that times out when the server has been idle for some time. Our clients would experience 2 minutes of wait time and then…
3
votes
0 answers

How to Render Razor Page in Azure Functions via Visual Studio 2019?

public static async Task Run() { return data != null ? (ActionResult)new OkObjectResult($"Current-Temperature, {data.Current.Temperature}") : new BadRequestObjectResult("Please pass a name on the query string or in the…
3
votes
1 answer

Output for Principal ID for multiple Azure App Services through Terraform

Using: Terraform v0.12.6 + provider.azurerm v1.37.0 I am creating multiple Azure App Services through Terraform and added identity block to make the app as an AD App. resource "azurerm_app_service" "apiApp" { count =…