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
29
votes
8 answers

Azure Web App Deployment error via msdeploy - ERROR_INSUFFICIENT_A CCESS_TO_SITE_FOLDER

I have been deploying to my Azure Web App for about 4 months now, using msdeploy, and everything has been smooth sailing to upload the website. Until recently, there has been no errors with deployment. I now receive a…
29
votes
2 answers

How can I use "Azure File Storage" with Web App Service?

I have been struggling to find some resources that help explain, how we use the File Storage with Web App Service. There are ways to use it with the old Web Roles, Check here (Using the Azure File Service in your Cloud Services (Web and Worker…
Jalal El-Shaer
  • 14,502
  • 8
  • 45
  • 51
29
votes
1 answer

what are the Azure thresholds for the 10 free sites account, is this for life

I'm looking for some answers, on Azure from people who are hosting there on the mini account, i.e. 10 free sites. Specifically: After the 90 days is it free for life, as far as you dont exceed the compute What thresholds do they set. If the…
aroos
  • 505
  • 2
  • 5
  • 12
28
votes
6 answers

Where can I find docker container logs for Azure App Service

I do have a Docker container running a .net core 2 app. The logging is configured using this code in Program.cs public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) …
28
votes
1 answer

Deploy Azure Webapp with custom container environment variables

In general, I would start the docker instance on my local machine like docker run -t -i -e 'a=b' ... Now, I would like to deploy and run my custom docker image which I uploaded to the Docker Container Registry before and start it like the command…
smichel
  • 745
  • 1
  • 7
  • 14
28
votes
4 answers

Azure app service websites has slow response times after being idle for some time

In the last couple of weeks we've been investigating some performance issues where our MVC application was responding very slow for the first request. We are talking like 30-45 seconds for the first request and 3 seconds for each new view. Our MVC…
Kasper Nørtoft
  • 291
  • 1
  • 3
  • 4
28
votes
5 answers

How to stop/cancel a running Azure webjob?

We've deployed an on demand Azure webjob and it is in an endless loop. We figured out the bug, did a redeploy and that failed. So we deleted the old job and went to deploy it again but now the job won't start. There is a file called…
Jon Leach
  • 821
  • 2
  • 10
  • 21
28
votes
7 answers

Show ASP.NET 5 error page in Azure web app

I am getting a 500 Internal Server Error when deploying our ASP.NET 5 web application to an Azure Web App. How do I get the details and stacktrace for this exception? I have done the following but with no luck: Using the diagnostics error page on…
Dave New
  • 38,496
  • 59
  • 215
  • 394
28
votes
3 answers

Azure WebJob timeout configuration settings

We have an Azure web site with a daily scheduled job. In our case, the scheduled job runs a stored procedure that takes about 10 minutes so there is no local processing. Our web job is terminating after about 4 minutes with this error. Command 'cmd…
Ender2050
  • 6,912
  • 12
  • 51
  • 55
28
votes
3 answers

Azure WebJobs and Deployment Slots

What will happen when I deploy a continuously running Azure WebJob with a QueueTrigger (queue connection defined in app.config) into a Deployment Slot (for example "Staging")? Will it start to run and listen to messages in the queue or will only…
pbering
  • 933
  • 6
  • 8
28
votes
2 answers

Accessing uploaded certificates in azure web sites

When I was using the web role I was just uploading the certificate in azure portal and I was able to see it .Now I have switched to the website in azure and I uploaded the certificate in the azure management portal but my code does not see it at…
sp9
  • 755
  • 3
  • 11
  • 22
27
votes
1 answer

How do deployment slot settings work on an Azure App Service?

For a given web app service, when multiple deployment slots are setup, e.g.: myapp myapp/staging and I create an appSetting that is marked as a "deployment slot setting" on myapp, what happens when I swap slots? Does the deployment slot setting stay…
27
votes
4 answers

How to clean up wwwroot folder on the target Azure Websites Windows Server before each deployment in VSTS

After about a dozen deployments, the wwwroot directory is filled with a lot of files due to active development and deployments. We are using VSTS's Azure App Service Deploy task to deploy to Azure Websites Windows Server for a ASP.NET Web API…
imgen
  • 2,803
  • 7
  • 44
  • 64
27
votes
3 answers

How do I setup Connection Strings for a WebJob project?

I am trying to setup a website and webjob, but get an error everytime I try to publish the webjob independently of the website (i.e. Selecting Publish as Azure WebJob from the context menu) C:\Program Files …
Enrico
  • 10,377
  • 8
  • 44
  • 55
26
votes
6 answers

Azure web app service time zone change issue

We are using azure web app service for multi tenant application. But default time zone of app service is UTC taking i want to change that time zone for that region only. I have tried WEB_TIMEZONE variable in app setting but not working.
paresh
  • 351
  • 1
  • 3
  • 12