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

Filter by
Sorted by
Tagged with
6 votes
3 answers
2k views

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 ...
DJA's user avatar
  • 171
5 votes
1 answer
84 views

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 ...
B.J.Goodman's user avatar
5 votes
1 answer
11k views

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-...
Edmond Tamas's user avatar
4 votes
3 answers
11k views

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 ...
Scuba Steve's user avatar
4 votes
1 answer
5k views

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 ...
Gabriel C's user avatar
  • 141
4 votes
1 answer
10k views

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 ...
bartbilliet's user avatar
3 votes
3 answers
5k views

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.
Thomas Woelfer's user avatar
3 votes
2 answers
2k views

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 ...
A_toaster's user avatar
  • 165
3 votes
0 answers
205 views

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 ...
JohnLBevan's user avatar
  • 1,244
2 votes
1 answer
1k views

Troubleshooting Windows container in Azure app service

I've been struggling for over a week to get a Windows container to run with an Azure App Service. My initial preference was to just use a standard container instance, but it appears that you only ...
Arian Kulp's user avatar
2 votes
1 answer
1k views

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 ...
Sarvesh Gupta's user avatar
2 votes
1 answer
1k views

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 ...
Fernando Magno's user avatar
2 votes
0 answers
16 views

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 ...
Darren Clark's user avatar
2 votes
1 answer
358 views

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'...
Kjensen's user avatar
  • 1,049
2 votes
0 answers
652 views

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,...
Paul O'Leary's user avatar
1 vote
1 answer
319 views

100% Availability of Azure Web Apps

Is it possible to achieve 100% availability of a web application deployed in Azure App Service? We have an ASP.NET MVC Web application deployed into Azure App Service. We have this application ...
Thomas's user avatar
  • 151
1 vote
2 answers
1k views

Is 'Max Cpu' at 100% normal?

Below are two images from our Azure 'App Service Plan', which hosts our application. We recently tried scaling up, but it did not solve the issue seen below. Our 'Max CPU' peaks throughout the day, ...
jamesdlivesinatree's user avatar
1 vote
1 answer
2k views

Getting timeout errors with nginx+gunicorn application on Azure app services

Guys I need some help with my NGINX config. Right now the Django application is hosted at Azure App services, and going straight to Gunicorn works fine, but when I go trough NGINX I start getting ...
allinws's user avatar
  • 11
1 vote
1 answer
62 views

Can I delete nuget directory on azure app service

I am running a 5 year old ASP.Net Core application on an Azure App Service on the D1 (Shared) app service plan. I have taken care of regular framework and package updates and have recently tried to ...
GilShalit's user avatar
  • 149
1 vote
1 answer
3k views

Mounting Azure Files in Azure App Service

Summary I have an Azure App Service running a custom container. When I bind a path to an Azure Files share my container stops working. Looking at the Container Issues logs, I see the error: [BYOS] ...
JohnLBevan's user avatar
  • 1,244
1 vote
2 answers
1k views

After a failed Azure Deploy, our deployed AppService is empty

We have a Azure DevOps pipeline that first deploys our resources using ARM-templates and then deploys our AppServices using zips. We've run the pipeline multiple times, and the application is ...
Kolky's user avatar
  • 131
1 vote
1 answer
274 views

Can the Azure App Service Inbound IP ever change?

We are using "custom domains" in a azure app service. A DNS is pointing to the IP address of the app service listed in -> custom domains -> IP Address. Everything works as expected (y) ...
A. Kay's user avatar
  • 13
1 vote
2 answers
2k views

Options for storing files from a Azure App Service

I am trying to deploy an existing .Net application into Azure App Service. The website needs to store and retrieve files. When reading the docs for Azure Files I was under the impression that this was ...
Jonatan B's user avatar
1 vote
1 answer
3k views

How to minimize latency between Azure App Service and Azure SQL Database?

We have an Azure App Service application using Java Tomcat 8.5 running in West US Region. The Service Plan for this Service is Standard, Big. This App Service application is connected to a SQL ...
Daniel Ardison's user avatar
1 vote
1 answer
41 views

Receiving a service call, checking the certificate and if it was allowed call the backend service on Azure

The problem I have an app service and I want people with specific certificates to be able to call me and then also send the thumbprint of the Certificate to the service. How should I do it in Azure? ...
Ashkan S's user avatar
  • 113
1 vote
1 answer
140 views

Azure App Service to Azure MySQL Flexible Server Latency

I have an old ASP.NET MVC website I've moved to Azure that runs super slow on there. I've set up: App Service (Standard S1 plan) Azure Database for MySQL flexible server (Burstable, Standard B1ms - ...
scgough's user avatar
  • 155
1 vote
0 answers
486 views

Installing MSI to ASP.NET Core App Service Windows Container

I'm trying to use Visual Studio 2019 to develop a ASP.NET Core 3.1 app running in Docker for Windows. I'm having a few problems with this. I need to host an endpoint to start and stop a service and ...
Arian Kulp's user avatar
1 vote
0 answers
64 views

Azure AD service app registration automatically allowed for clients without approval

I have an Azure Web App Service that will be used in a service-to-service environment. I want that this service to use the Azure AD app registration for authentication. This service will due to it's ...
Rune G's user avatar
  • 111
1 vote
0 answers
137 views

On Azure portal I see some error in graph HTTP 5xx but I am unable to see detail of it on linux app service .net core 2.2

I am using azure Linux app service for my .NET core 2.2 . I see error in graph but unable to find to error detail its really important for me. I have checked also for the folder of logs 'Explained ...
Ahmad's user avatar
  • 111
1 vote
1 answer
306 views

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 ...
jrd1989's user avatar
  • 688
1 vote
1 answer
203 views

URL Rewrite Filemap Provider equivalent in Azure App Services?

I have an application that I am migrating from IaaS to Azure PaaS. This application has a significant dependency on IIS Rewrite rules using the External Rewrite Map provider (specifically, we're ...
jdylanmc's user avatar
  • 111
1 vote
0 answers
809 views

Optimizing an Azure App Service for Static Content

I have a "Basic" Azure App Service Plan hosting multiple App Services. One of those App Services contains exclusively static content (i.e., html, css, js, png, &c.). Question What server-side ...
Jeremy Caney's user avatar
1 vote
1 answer
2k views

Azure App Service plan stuck at 100% CPU

Our Azure App Service Plan has been stuck at 100% for a few hours now. I've tried restarting the App Services on it, but to no avail. I think I need the whole VM hosting the App Service Plan behind ...
Scotty H's user avatar
  • 305
1 vote
0 answers
42 views

Repoint website in Azure App Service to Azure static site storage container blob with no downtime

I have a production website in an App Service with 4 custom domains bound to it and two SSLs. I have a newly developed static website that is deployed to a storage container static site $web blob. ...
Rich Williams's user avatar
1 vote
1 answer
63 views

How can I set up the azure active directory for azure DevOps? what is the difference between IAM and Active Directory?

Currently, I am trying to establish Azure DevOps pipeline to deploy into Azure App service. While Creating Pipeline it is looking for Azure Subscription. After selecting Azure Subscription it is ...
MD. Ashfaqur Rahman Tahashin's user avatar
1 vote
0 answers
238 views

Azure Application Insights Profiler data is not shown on Profiler blade

I have an Azure App Services web app with an Application Insights extension enabled (not in the app codebase, just injected via the Azure portal). I can see the analytics in Application Insights ...
Sergey's user avatar
  • 153
1 vote
0 answers
358 views

Azure App Service Deployment not closing Node.js WebSockets connection

Background I'm having trouble with an Azure App Service Deployment. I'm using VSTS to do the deployment using the Azure App service Deploy feature. I'm deploying a Docker container to a Linux App ...
Sawtaytoes's user avatar
1 vote
0 answers
67 views

Azure Container Service: Webhook recieves System.IO.IOException

I have followed this (https://docs.microsoft.com/en-us/azure/app-service/containers/app-service-linux-ci-cd) tutorial to setup Azure AppService with my own Docker Container (nginx container hosting an ...
olifantastic's user avatar
1 vote
1 answer
935 views

Accessing local network resources from azure webapp

I need to access some local network resources from a webapi running as an appservice. For reasons, our local network gateway (Cisco ASA something) requires what in classic vnet lingo was called ...
Pål Andreassen's user avatar
1 vote
1 answer
3k views

improve MySQL and AZURE App Service Performance

recently we migrate our website based in wordpress from a Virtual Machine to App Service to enable Auto Scale. is working fine. BUT is really slow (1,4 seconds in initial load). we are Using: - App ...
Johan Roure's user avatar
0 votes
2 answers
2k views

Azure App Service Plan - Specify App Size with PowerShell

I'm trying to deploy an app service plan (ASP) in the premium tier using powershell. I can deploy the ASP successfully but the ASP defaults to P2v1 which is not what I want. I need the ASP to be set ...
jrd1989's user avatar
  • 688
0 votes
1 answer
814 views

SSH into a Docker Container and list the files and directories

We have an SSH connection to our Docker container in an Azure App Service. How do we access the file system? We have tried dir and ls. There appear to be no files or directories in the container, even ...
Shaun Luttin's user avatar
0 votes
2 answers
1k views

Wildcard host headers in Azure App Service

I have a web app hosted on Azure App Service under my domain app.example.com. Customers access their own content using the following paths: app.example.com/customer1 app.example.com/customer2 etc.. ...
Joel's user avatar
  • 101
0 votes
1 answer
114 views

Virus scanner in Azure App Service

Is there any virus scanner installed on Azure App Service machines? When my web application is receiving a file, is it scanned on the wire? Or could I save it to disk, wait 2 seconds and if it ...
Mathias Rönnlund's user avatar
0 votes
1 answer
172 views

Can I use Access Restrictions to only allow access from whitelisted IPs to my Azure App Service?

I have a public dev environment that I'm trying to lock down to just a few people. The Access Restrictions has a default Allow All rule that can't be removed. If I try to add a blocking rule, it ...
ernest's user avatar
  • 109
0 votes
1 answer
724 views

Azure App Service can't connect to Azure AD Domain Services DNS server

There's a number of moving parts here so I'll try and bullet-point the setup (PS: all of the domain names and IP addresses below are fictitious). Azure Classic I have an Azure AD Domain Service for "...
PatrickSteele's user avatar
0 votes
0 answers
58 views

How to add delegation to existing subnet in azure bicep?

I am trying to create azure app function which should be accessible to postgres in private vnet. But, it seems the network is showing error as already delegated so can't add that. So I tried adding ...
sardar's user avatar
  • 1
0 votes
0 answers
52 views

On Azure, how do I find the ip address of an app service to create a firewall rule for it on Azure SQL?

I have created an Azure SQL server, setting 'Allow Azure services and resources to access this server' to no. I have a. ASP.Net application running as an App Service and I want to allow it to access a ...
GilShalit's user avatar
  • 149
0 votes
0 answers
86 views

Application gateway multi site set up

I have created a set up which uses application gateway to route traffic to app services. Below are the details: Application Gateway - 1 Azure App Service - 2 App Service Plan - 1 VNET and one subnet ...
Lucky's user avatar
  • 1
0 votes
0 answers
35 views

How to list/check Partition Count usage on a given Event Hubs Cluster

everybody! I hope you are doing well! Currently I'm supporting an Azure Event Hubs cluster that very often has notifications that the Partition Counts has reached its limit: 2000 Partition Counts, ...
rbmxrenato's user avatar