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

Why is /signin-oidc returning 404 after using Azure AD sign-in?

I'm implementing Azure AD authentication in an ASP.NET Core MVC 3.0 app. I have followed the instructions in this tutorial, the option 2; the only difference is I used an existing app instead of the downloadable example (I made sure of installing…
3
votes
1 answer

How can I pull the release ID and build number into my Azure DevOps deployed PHP app

I'm using Azure DevOps to build and release my PHP app, currently to a staging slot within an Azure WebApp instance, so that I can warm-switch it to the production slot. The process is using Azure Pipelines to build (zip) the app from the branch,…
FatherFil
  • 61
  • 5
3
votes
1 answer

Closing parentheses in string dropped when creating app service app setting via Azure cli

I'm creating an Application Setting in an Azure App Service via the Azure cli. The value of the setting is a KeyVault reference which, if you're not familiar, has a special…
Crowcoder
  • 11,250
  • 3
  • 36
  • 45
3
votes
2 answers

How to port local.settings.json from azure function to .NET core web project?

I am a little confused how to handle the local settings in web projects, for our Azure functions this seems very trivial and we are using local.settings.json and then we use the ConfigurationBuilder as below to handle local vs Azure config…
Matt Douhan
  • 2,053
  • 1
  • 21
  • 40
3
votes
1 answer

Permission error for Azure Active Directory easy auth /.auth/me returns 401

I've a Python Flask App for which I've use Azure Easy Auth (Azure Active Directory)for App Service. The login mechanism works well. However I want the info of who the logged in user is i.e., name, email etc. For this I understood that we can call…
Vijay
  • 1,030
  • 11
  • 34
3
votes
2 answers

ASP.Net Core - Application Insights - Stack Trace

I'm setting up a pretty simple ASP.Net Core (2.2) MVC Web App. I want to be able to see any application errors (500s) and what caused them so it seems like Application Insights is the place to look. If I go into Application Insights / Failures…
3
votes
2 answers

Run a single container app on azure from a private docker image returns: :( Application Error

I'm looking to use azure web apps service to run a multiple containers app, but I'm starting for the simpler case which is to run a single container for an image that it's already working as a container instance. For now I'm doing this deployment…
Luis Ramon Ramirez Rodriguez
  • 9,591
  • 27
  • 102
  • 181
3
votes
0 answers

Azure perl support

I would like to know how I can run perl scripts on Azure web app. Just by running perl -v indicates that it has Perl installed already. However, the bin folder was within a GIT folder, which is unusual. I have attempted installing Strawberry Perl on…
user2574948
  • 247
  • 1
  • 3
  • 16
3
votes
2 answers

Azure App Service connecting to Azure Sql Database

I have a Web App (Azure App Service) and I have an Azure SQL Database that this Web App talks to. I have two questions regarding communication between the two. When connecting from the Web App to the Database (using the connection string), does…
3
votes
3 answers

When mounting an azure file share in a web app I get a state of InvalidCredentials

I have a File Share setup in a Storage Account. When I try to mount it in my Web App I get the following response: "nexport-shared": { "accessKey": "hidden==", "accountName": "hidden", "mountPath": "\\\\nexportshared", "shareName":…
Agile Jedi
  • 2,922
  • 2
  • 18
  • 17
3
votes
2 answers

I want to use Azure app service 'Application settings' variables into my Angular web application

I want my angular web app to use the Application setting variable of Azure app service so, please guide me to the solution. So that I don't need to, again and again, build my app and deploy. I have to only directly change the variable at the portal…
V_for_Vj
  • 849
  • 1
  • 12
  • 30
3
votes
2 answers

Invoking MsDeploy.exe manually in a Azure Devops

Background As part of our deployment pipeline we are creating our deployment artifact, by running several .xdt transforms on our build artifact as well as adding several additional files. As the last step before publishing, we would like to invoke…
Hos
  • 583
  • 1
  • 6
  • 25
3
votes
1 answer

Set Azure App Service environment variables with microsoft devops deploy task

For years we stored our environment variables in devops pipelines (for each environment) and had a custom powershell script for updating them on deploy. recently on another project with similar need, I discovered that the task Àzure App Service…
camous
  • 998
  • 11
  • 27
3
votes
2 answers

Getting 500 - Internal server error in Azure Website after restart

I have a web application in azure(App Service), recently i have restarted the app, after restaring i am getting: 500 - Internal server error. There is a problem with the resource you are looking for, and it cannot be displayed. Please let me know…
Sriram Tamilarasan
  • 491
  • 1
  • 6
  • 23
3
votes
1 answer

ILoggingBuilder does not have AddEventSourceLogger with 0 parameters. How to initialize this logging

'ILoggingBuilder' does not contain a definition for 'AddEventSourceLogger' and no accessible extension method 'AddEventSourceLogger' accepting a first argument of type 'ILoggingBuilder' could be found …