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

Azure App Service -- Web.config changes being overwritten

I have made changes to the web.config via Kudu for a .NET core 3.0 application running on Azure App Service, yet it seems when the site is deployed via Azure pipelines those changes I've made within the web.config is overwritten. Our solution (.sln)…
Andrew Duffy
  • 795
  • 2
  • 17
  • 37
3
votes
2 answers

How to install SSH in app service container

I need to login to a linux container hosted in an app service via SSH (the image doesn't have it installed) in order to copy some files. Is there a way to do this via the portal? I'd like to avoid extending the image if possible. I tried fiddling…
Gonzalo
  • 679
  • 1
  • 8
  • 18
3
votes
1 answer

How to assign Azure App Services within a single App Service plan to different subnets within a virtual network

Within a given Azure "pay-as-you-go" subscription, I currently have a single App Service Plan which includes multiple App Services; let's call them App Service 1, App Service 2, and App Service 3. I have setup a single Azure Virtual Network which…
3
votes
1 answer

How to access the persistent shared storage of Azure Web Apps For Containers

My micro-service will create some files that I need to access, these are mainly archive or error data. I found the article from here that Microsoft azure app service by default mount persistent shared storage across the container From Microsoft…
Krushna
  • 5,059
  • 5
  • 32
  • 49
3
votes
1 answer

Host Angular Universal 9 on Azure App Service with .Net stack

I have Angular Universal 9 & standard Angular 9. I have to host on Azure app service with stack: .Net 4.7. Angular Universal local as expected but when I deploy it on Azure web service is not working. Currently, an app with Angular 9 is working but…
3
votes
2 answers

Set App Service application setting from Azure DevOps yaml

We are using AzureRmWebAppDeployment@4 for deploying our web app into an Azure App Service via a yaml file. So far, so good. Now we want to set few settings from yaml, rather than using a .json or .xml file Currently we do it manually through the…
Jaime
  • 5,770
  • 4
  • 23
  • 50
3
votes
1 answer

Azure App Service authorization/easy auth is conflicting ASP.NET Forms auth

I want to enable App Service Authentication to protect development environment from public access. The App Service authentication itself is working fine, only people from our company Azure AD are allowed, all good. But it is conflicting with the…
Erndob
  • 2,512
  • 20
  • 32
3
votes
2 answers

How do I setup lets encrypt for an Azure Linux Service Web App

I have found plenty of guides on how to set up Lets Encrypt for Azure Windows Web App Services, but I can't find any at all for Linux based services. Here are two example of such tutorials (that require…
JensB
  • 6,663
  • 2
  • 55
  • 94
3
votes
1 answer

Azure App Service behind Azure Application Gateway

I'm trying to serve multiple Azure App Services behind an Application Gateway. These services should only be reachable through the application gateway endpoint. To achieve this, I've done the following: Added a VNet Added a subnet, and added all…
3
votes
1 answer

nestjs to azure windows app service - web.config settings

I've been trying to deploy my nestjs api to azure since yesterday and have not been successful. At first I was trying to push it to a linux cloud service plan and was able to deploy it from vs code, see in the azure logs that the app was…
Blair Holmes
  • 1,521
  • 2
  • 22
  • 35
3
votes
1 answer

Process.env.APPSEETING_MyAppSetting undefined in Angular 8 as webAPP on Azure

I have created an APP using Angular 8 and deployed on Azure as a web app (AppService) on windows OS. I have created an AppSetting called MyAppSetting. When I tried to access the app setting in angular 8 as process.env.APPSETTING_MyAppSetting or…
Dee
  • 183
  • 3
  • 13
3
votes
1 answer

How to access site files on Azure

so my uncle asked me to update something on his website. I found out he uses azure service. I've never used this service before. After looking around I thought it was as easy as Searching App Services, then clicking on the only app running, then on…
ddd
  • 79
  • 1
  • 1
  • 8
3
votes
0 answers

How can i change my azure Web App PHP version 7.2 to 7.1?

I have the issue I want my azure web app in 7.1. But same if I executing command which is below, az webapp config set --name --resource-group --linux-fx-version "PHP|7.1" Reference (Configure a Linux PHP app for…
parth
  • 91
  • 1
  • 10
3
votes
1 answer

Rollback to previous Version in Azure Devops

I have deployed a python code to azure DevOps from the git repository and my team committed some changes due to that we are facing some issue. How I can go back to the previous version?
Develpoer_J
  • 101
  • 2
  • 7
3
votes
1 answer

Azure AD - id_token not refreshing

I'm using AAD to lock down my azure web app and api. I am calling /.auth/me to retrieve the authenticated user's tokens, and then using the id_token to authenticate the user to the api. The id_token expires in 1 hour, which should be fine as you…
Matt M
  • 1,093
  • 2
  • 11
  • 26