Questions tagged [azure-app-services]

Azure App Service enables you to build and host web apps, mobile back ends, and RESTful APIs in the programming language of your choice without managing infrastructure

Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile back ends. You can develop in your favorite language, be it .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on both Windows and Linux-based environments

Azure App service Docs

65 questions
5
votes
3 answers

Catastrophic Azure App Service outage after an automatic Azure platform upgrade

A relatively simple Azure App Service (currently .net 4.6.2, against Azure SQL) has been running for over 18 months. It is rock solid. I rarely think about this site and have not released an update for several months. I wake this morning to find…
DJA
  • 161
  • 4
5
votes
1 answer

Azure Web App (Linux): “Error: Container didn't respond to HTTP pings on port: 8080” - when using: “start”: “pm2 start server.js”

My App Service Linux instance crashes if my node app is using the start script: "start": "pm2 start server.js": 2019-04-15 11:36:34.432 ERROR - Container crime-digest__6ea5_0 for site crime-digest__6ea5 has exited, failing site start 2019-04-15…
Edmond Tamas
  • 211
  • 1
  • 3
  • 7
5
votes
1 answer

How to streamline the Azure Resource Groups

Not long ago, I started to research Azure Resource Manager and all that it involves. The main goal is to deploy a VM with access to SQL database. Now I'm still trying to work on deploying azure sample templates using this guide:…
B.J.Goodman
  • 454
  • 2
  • 6
4
votes
3 answers

Monitoring HTTP 5xx errors in an Azure App Service

The Azure App service UI used to have an ability to inspect 5xx errors directly. Since we starting using Azure, the UI has been changing almost constantly though, and this ability seems to have disappeared. We are seeing some 5xx errors, and without…
Scuba Steve
  • 149
  • 3
  • 9
4
votes
1 answer

Azure App Service Plan: configure load balancing

We have an auto-scaling App Service Plan, which consists of 2 Web Apps: One web app is accessed by the public, and should be load balanced. However, the other web app (authoring) for support reasons (data integrity) can only be accessed from a…
4
votes
1 answer

Can I use Azure DDoS protection with common App Services plans instead of App Services Environment (ASE)?

I see Azure DDoS protection can be enabled at the VNET level, and I understand that I can configure the integration of an App Services web app with a VNET, but is that enough to place my application under DDoS protection? I am under the impression…
Gabriel C
  • 141
  • 1
  • 2
3
votes
0 answers

Options to improve container volume mount's SMB metadata operations performance

Question Are there any ways to improve metadata operation performance between a Linux based container running under Azure App Service and a mounted volume hosted in Azure Files? Context I recently migrated a solution which had everything on one…
2
votes
1 answer

Restrict Azure storage account access to allow only my App Services, blocking remote access

I would like to block remote access, allowing only the App Services in the same subscription to access my storage in production. I tried using Virtual Network and Access control (IAM) but without success.
2
votes
0 answers

Multiple app service initialization scaleout on Azure

I'm having an issue where on a single app service plan there are multiple sites with the same application. This application has a somewhat heavy initialization. The issue is that on scale out, the initialization is run for all sites at once, and…
Darren Clark
  • 121
  • 1
2
votes
1 answer

In Azure, how do I see CPU consumption for an app service, split on web apps?

One App Service Plan can host multiple web apps. How do I see how much CPU is consumed by each individual web app in the app service plan? Ideally, I want to see a line graph with each web app as it's own line. How do I do that?
Kjensen
  • 1,009
  • 9
  • 28
  • 39
2
votes
0 answers

Cannot Connect to Azure Database from Azure Web Application

We have a SQL Server database in Azure. In the same resource group is an App Service. The App service connects to the database, using the connection string: Server=tcp:[server].database.windows.net,1433;Initial Catalog=[database]; Persist Security…
2
votes
2 answers

Scaled out app service seems to scale poorly. Directs all traffic to an instance with 100% CPU usage

I have an app service plan that has scaled out to two instances. I've managed to get the statistics on the two instances and one of them is at 100% CPU, and the other is at 5% CPU. This is an issue because it seems all HTTP requests are being sent…
A_toaster
  • 155
  • 5
2
votes
1 answer

Azure App Service Domain Verification - No App service app configured with the custom domain

I have an existing custom sub-domain which I have mapped to my existing Azure App Service web app via CNAME. I have also assigned this custom sub-domain to my app service app via Azure portal successfully. I can see "HOSTNAMES ASSIGNED TO SITE"…
2
votes
1 answer

How to restart App Service Plan

The iPhone app has an option to "restart" a service plan. Can anybody tell me where this is located in the portal? I can't seem to find it.
1
vote
1 answer

Azure ARM Template - Folder Location App Setting

I'm trying to specify an app setting in my ARM template that points to a specific folder location where the web application I'm deploying should store log files, ex: D:\folder\logs. When I specify the folder location though it complains about the…
1
2 3 4 5