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
0
votes
2 answers

Get VM name for an instance of Azure web app from REST API or PowerShell

I am trying to find a REST API / PowerShell cmdlet to retrieve the VM name(starts with RD) for an instance of Azure web app. I found out that I can list the process Ids by Instance Id and then get Instance Process with Azure App Service. This object…
Mia
  • 1
  • 1
0
votes
2 answers

why is default ssl certificate not working for azure web app

I have a customer who has two web apps with exactly the same configuration and custom domains configured and SSL certs binding is complete. Ex - qa.com and prod.com. When accessing https://qa.com and https://qa.azurewebsites.net both are working…
rsch006
  • 95
  • 1
  • 6
0
votes
1 answer

Logging in Azure WebApp

I have created a .net 2.1 core mvc and now ready to host it on Azure WebApp. I am yet to finalize logging. https://stackify.com/azure-app-service-log-files/ I read above link and found the below snapshot to configure Application logging and Web…
JemHah
  • 434
  • 4
  • 16
0
votes
1 answer

Azure WebApp not accepting larger JSON payload

I have a ASP.NET Core 2.1 WebAPI project hosted in Azure as a Windows App Service in Premium Tier. This API has an endpoint that accepts a POST request with a JSON payload (Content-Tye=application/json). When I call this API(from Postman or from C#…
Pradeep
  • 1,108
  • 1
  • 15
  • 31
0
votes
1 answer

On Azure, can I run a Windows Docker container in an ASE?

I have an MVC 4 Web Api application that I would like to run in Azure. Using docker-compose and Dockerfile I got it running perfectly on my local, pushed to an Azure Container Registry, and it is running on a test Web App as a proof of concept. Due…
0
votes
1 answer

Access Azure WebApp Object From Azure WebJob

We have a Static Class in the WebApp that contains a static dictionary of current sessions and username. We need to have access to the data in the dictionary in the WebJob as we want to update data based on who currently has active sessions. The…
77Vetter
  • 209
  • 3
  • 16
0
votes
1 answer

Set multiple email ids while creating ActionGroup in Azure Alerts

I want to set multiple email ids in "Email Azure Resource Manager Role" while setting Monitoring Alerts through Azure Portal. I am not sure how to configure multiple user using above action. Could you please help.
sudhirk
  • 423
  • 1
  • 5
  • 12
0
votes
2 answers

Does Azure App Services support NetCore 2.2 InProc hosting?

I read that .NET Core 2.2 InProcess hosting had an issue (see here) in Azure. The suggestion was to switch to OutOfProcess hosting. Has this issue been fixed? Can we use InProcess hosting yet?
user2368632
  • 990
  • 1
  • 12
  • 33
0
votes
1 answer

Which Python executable are you supposed to use in Azure Kudu scripts on Linux?

I've got an Azure Linux Web App, and a custom deployment script deploy.sh I have the Stack runtime version set to Python 3.6 in Application Settings. I'm having trouble using Python 3.6 in the deployment script - if I use the SSH console I can run…
user3592246
  • 157
  • 2
  • 16
0
votes
0 answers

Wordpress landing page for asp.net core mvc azure web app

Is it possible to have my landing page (root url www.xxx.com) be a wordpress site hosted in azure and also have a azure asp.net core mvc web app live together? the asp.net website would start from a login page that I can redirect from the wp landing…
Reza
  • 5,314
  • 5
  • 21
  • 35
0
votes
1 answer

Auth0 Allowed Web Origins for app hosted in Azure

I have a SPA application that I've developed using Auth0 for my IDP. When developing locally, I set the Auth0 Allowed Web Origins settings to http://localhost:8080 and got everything working. Now I've deployed my app to Azure as a Web App -- so my…
RHarris
  • 10,641
  • 13
  • 59
  • 103
0
votes
0 answers

Simple anonymous Azure web app gives 401.2 Access is denied

It's been five years since I just touched Azure so I am not very familiar with the latest settings. I have just published a simple ASP.NET MVC app that I want to give anonymous access. Almost every setting is at its default value. I published it…
Old Geezer
  • 14,854
  • 31
  • 111
  • 198
0
votes
1 answer

Release Azure Domain

I'm building a website/web application for this team and first started it on Azure. But now, we have realized that we would rather have it on something like WordPress. How do we transfer the ownership of the domain?
0
votes
3 answers

Access WCF service deployed as WebJob on Azure from whithin WebApp Sandbox

I have come across a document on Azure Sandbox mentioning we can communicate between processes within WebApp Sandbox over TCP as well as named pipes. I have WCF service deployed as WebJob, I can communicate between two WebJobs deployed within WebApp…
Anand
  • 238
  • 2
  • 5
0
votes
1 answer

Azure flask app deployed always shows the default landing page

I have deployed a simple Flask application on an azure webapp by forking the repo from https://github.com/Azure-Samples/python-docs-hello-world Here is my application.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): …