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
1 answer

Group Role-based Authorization In Enterprise Applications

I have used Azure App registrations to register my app. In the Manifest, I added appRoles. I then use Azure Enterprise applications to add Users and Groups to the appRoles I created. Do I need to update "groupMembershipClaims": "SecurityGroup" in…
3
votes
1 answer

Deploying multiple angular single page applications on Azure App service

I am trying to deploy two Angular applications to an app service plan where one of the application is accessible through baseurl and another is accessible through baseurl/app1 I was able to get it to work using virtual directory path mapping. But…
3
votes
2 answers

Deploying web app from Visual Studio Code to Azure but leave out a data folder

I am building a very small Node/Express API app in Azure using Twilio to route communication for a small group. I initially built out a data structure for users in CosmosDB but found out it's minimum $24 per month, which is way over budget for…
3
votes
1 answer

How to stop .net-core from continuously adding folders when building

Every time I build my .NET Core project, it adds a deeper folder containing the .csproj file in \bin\release. The result is the following folder structure: …
3
votes
1 answer

Enabling SSH on Azure App Service for containers dumps garbage into the log stream, am I doing something wrong?

Following the documentation to enable the SSH console to work in Azure portal with a Linux container, causes the container to dump a large amount of garbage to the log stream, ultimately restarting the web…
dev null
  • 165
  • 1
  • 14
3
votes
1 answer

How can I restart an Azure App Service instance programmatically?

I have a set of Azure App Services which occasionally have single instances that become unhealthy. We've identified that restarting that specific instance via Advanced Diagnostics brings the instance back up. We'd like to build some automation such…
ElFik
  • 897
  • 2
  • 13
  • 31
3
votes
2 answers

Access denied error while connecting to MySQL in App in Azure App Service

I created an Azure App Service and enabled MySql in App. I able to connect to MySql using phpMyAdmin from portal - go to app -> MySql in App -> click manage. It open another window with phpMyAdmin. But somehow now I am not able to connect to…
3
votes
1 answer

How do I disable Data Sampling for Custom Events, but keep it for Requests?

I have a website on Azure app service(website) that logs a lot of data in my application insights. I like to have sampling only for requests, because there are a lot of them, but I need to have all my custom Events as they have a buisiness…
Ashkan S
  • 10,464
  • 6
  • 51
  • 80
3
votes
1 answer

Azure ARM app service storage mount no longer works

I'm trying to deploy a docker container to an azure appservice with a storage mount declared, this was previously working but doesn't seem to anymore ? according to the documentation it should be doable using azureStorageAccounts on siteConfig ..…
3
votes
2 answers

How to get Azure Devops Web Applications to deploy

I am setting up Azure Devops to deploy a .Net Core Web Application to Azure. In Visual Studio, I have created a publish profile and publishing with this profile works correctly. I use the user name and password from the portal. Now I am trying to…
David
  • 113
  • 1
  • 1
  • 7
3
votes
0 answers

Azure App Service API gets FileNotFoundException: Could not find file 'D:\home\site\wwwroot\MyApi.xml when trying to start swagger

I am working on an ASP.NET Core 2.2 API deployed to Azure App Services. I am deploying to a DEV slot. I am using Swagger, which works fine on my localhost, but when I go to the URL of by DEV slot and use /swagger, I get the…
3
votes
1 answer

Azure set up availability test of internal url

I have a public web app on which I can set up an availability test from Azure. I also have a private web app on which the availability test fails. I want to track the availability of my internal web app. In C#, I have found until…
Iason
  • 209
  • 3
  • 11
  • 38
3
votes
1 answer

How do I update the IP whitelist for a staging slot via Azure Powershell from an Azure DevOps Release Pipeline?

I have an application hosted in Azure, and I use Azure DevOps to manage my build and release pipelines. As part of the release, I warm up the application by making a request to the root url (e.g. https://myapp.azurewebsites.net). In order to make…
3
votes
1 answer

Azure FTP login via command line / batch file fails

I am trying to connect by FTP to an Azure Web App. I downloaded the publish profile and copied the login to my FTP client and can connect successfully. But when i use ftp.exe from Windows then i am not able to connect to the same host with the same…
Tim B.
  • 429
  • 4
  • 11
3
votes
1 answer

Is there a way to have App Services settings use Key Vault secrets?

So we have started to use Azure Key Vault for our secrets, but looks like applications running as Azure App Services have to have application setting values hardcoded in the portal. Is there a way to have the application settings in App Services…
Stefan Zvonar
  • 3,959
  • 3
  • 24
  • 30