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

68 questions
0
votes
1 answer

multiple apps backup in azure

I'm configuring backups for multiple app services in azure for my business. This link says that I have to put the backups in a storage account. I was wondering if I it is okay in practice to put all app service backups in one storage account or if I…
jay
  • 1
  • 1
0
votes
1 answer

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 "mydomain.com". In the properties page for that…
0
votes
2 answers

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.. But I also allow customers to use their own…
Joel
  • 101
  • 4
0
votes
0 answers

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 database on the SQL server. From what I see…
GilShalit
  • 149
  • 7
0
votes
0 answers

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 App Service - 1 for .net 5 web app, 1 for .net 5…
0
votes
1 answer

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 disappears, assume that the machine's antivirus had…
0
votes
0 answers

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, since it has 1 Capacity Unit (CU). I looking for a…
0
votes
0 answers

Azure Service Plans - Windows VS Nix high memory usage

We're seeing HUGE differences between Windows app service plan usage and Linux app service plan usage, when both apps are idle. The difference is circa 300mb, which when we're talking a few app deployed to it, would equal a (few) different pricing…
Stuart.Sklinar
  • 157
  • 2
  • 12
0
votes
0 answers

Azure App Service + Nginx not able to handle more than 5 concurrent requests

I have a PHP 8.1 application deployed on Azure App Service, Nginx and PHP-FPM which is supposed to have long running scripts. The process is working fine for upto 5 requests at a time, but when I am making a 6th request, that request waits until one…
Sourabh
  • 113
  • 4
0
votes
1 answer

Azure app service recycle does it drain the queue

We have an issue where we can't use the arr affinity in an azure app service because it does not work behind a front door using a custom domain (the arr cookie has the wrong host on it for the browser to accept), this appears to be a limitation of…
mattb
  • 115
  • 3
0
votes
1 answer

Can't use Azure resource editor to update additionalLoginParams on an app service that was migrated to auth version 2

I was trying to get a bearer token from the headers Easy Auth injects into requests to my Azure App Service to provide users who want to make API calls to my application, but the token from the token store that's provided in…
Falcon Momot
  • 25,244
  • 15
  • 63
  • 92
0
votes
2 answers

Custom Ubuntu/Apache docker image in Azure App Service is using IIS?

I have a mystery. So I set up an Azure Web app on Linux that pulls from a custom docker image stored in Azure container repo. The dockerfile for the image is pretty simple - ubuntu:latest as the base, installs apache, php, and wordpress using…
0
votes
1 answer

App detailed-Http Logs in Azure App Service for Linux

I hosted a web API on azure app service using a docker image (linux) And for production purpose I need all http requests to be logged. I tried " Diagnostic settings (preview)" and I selected "Archive to a storage account" , But when I checked my…
karim alaa
  • 101
  • 1
0
votes
1 answer

Azure Defender and specific App Services

I'm reading the documentation for Azure Defender (https://docs.microsoft.com/en-gb/azure/security-center/azure-defender) and this suggests that the only way to enable Azure Defender for App Service is through enabling for the subscription which…
rob
  • 3
  • 2
0
votes
2 answers

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 to P2V2 in the premium tier. I can't figure out or…