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

.net core azure deployment failing: Project file does not exist

I have an app-service app set up in Azure which is set to deploy upon commit into a team-services git repository. This has been working fine until now, and the deployment is failing with: MSBUILD : error MSB1009: Project file does not…
LDJ
  • 6,896
  • 9
  • 52
  • 87
15
votes
2 answers

upload files to Azure file storage from web app using rest api

I have a web app that is currently using webforms, not MVC, which is going to be hosted on the Azure platform. The main function of this web app is to upload user files to Azure File Storage. The files may be pdf, mp3, etc., not simple text or data…
AprilX
  • 353
  • 1
  • 2
  • 10
15
votes
5 answers

How to debug Azure Web App memory leaks?

There is the excellent Start Profiling button in the SCM portal that works perfect for CPU. Then there are some sources that refer to a Download GC Dump button: https://stackoverflow.com/a/27987593/647845 But that doesn't seem to be available…
Dirk Boer
  • 8,522
  • 13
  • 63
  • 111
15
votes
2 answers

ASP.NET 5: Access-Control-Allow-Origin in response

From what I understand, when enabled CORS accordingly, the response model should include the following header information (provided that I want to allow everything): Access-Control-Allow-Origin: * Access-Control-Allow-Method:…
Dave New
  • 38,496
  • 59
  • 215
  • 394
15
votes
6 answers

How to remove WebDAV module from IIS?

I am struggling for days to enable PUT and DELETE request for my PHP app at MS Azure. Some answers I found suggest to remove the WebDAV module from IIS. How would I do so?
Samir Sabri
  • 937
  • 3
  • 11
  • 26
15
votes
1 answer

Run self-hosted OWIN application in Azure Web Apps

It is possible to run a suave.io app on Azure Web Apps because of an IIS8 feature called HttpPlatformHandler. I tried to run a self-hosted OWIN application the same way, but got an exception on startup: Unhandled Exception:…
Johannes Egger
  • 3,874
  • 27
  • 36
15
votes
4 answers

Is it possible to move a website to a different "Web Hosting Plan"

I've got several websites in azure, and they are now grouped into "Web Hosting Plans". I have two plans total. What I'd like to do is move the sites from one plan into the other. Is there a way to do this without removing the sites and recreating…
iamkrillin
  • 6,798
  • 1
  • 24
  • 51
15
votes
1 answer

Will "Always On" setting prevent BOTH idleTimeout and periodicRestart?

Has you may know, Web sites hosted under Microsoft Azure Web Sites service are by default configure to timeout after idling 20 minutes (idleTimeout) and the application pool to restart every 29 hours (periodicRestart). This cause the web site to be…
PLT
  • 319
  • 1
  • 4
  • 16
15
votes
8 answers

Windows Azure Websites - Get Instance Identifier

What's a possible way to determine on an Azure website with multiple instances what instance is responding (some ID or other piece of unique info)?
Sean Feldman
  • 23,443
  • 7
  • 55
  • 80
14
votes
1 answer

How to send Docker container logs from Azure App Service to Seq log server?

My website uses a docker container, and I host it on Azure using an Azure App Service. I use a Seq log server to centralize logging. How can I send the Docker container logs from my Azure App Service to my Seq log server? I am afraid that the…
14
votes
4 answers

ARM Template for to configure App Services with new VNet Integration feature?

I am working on ARM Templates, I have created the template file with two or more azure app services along with app service plan and then configured with VNET Integration of each app service. This is sample JSON code: { "comments":…
14
votes
2 answers

How to set the dns option in Azure web app for containers

This is what happens to run the container. I wonder if there is a way to start the web app for containers with a custom DNS. I have 5 microservices in my ILB-ASE they need to be able to call each other using my custom DNS server in the VNet. When I…
14
votes
5 answers

how can you upload files to an Azure Web Apps virtual directory?

how can you upload files to an Azure Web Apps virtual directory ? I created a virtual directory for example called \UAT but when i log on via ftp its not visible ?
itye1970
  • 1,654
  • 7
  • 31
  • 62
14
votes
1 answer

How can I set "Https only" for my Azure web app using an ARM template?

I know how to set Https only manually in the Azure portal. Navigating to My Web Application > Custom domains in the Azure portal opens the Custom domains pane, which has an "Https Only" option. Setting this option to "On" enables the functionality…
14
votes
1 answer

Azure Web App does not load .json file

I have a problem with an Azure Web App, as it does not load a .json file that is located on the server. The app is running fine until it needs to load the data from the .json file. The event is triggered by clicking a button that runs a javascript…
LTanase
  • 197
  • 2
  • 15