Questions tagged [azure-appservice]

700 questions
3
votes
2 answers

Deployment slots in Azure FunctionApp

I'm trying to understand how deployment slot works (https://learn.microsoft.com/en-us/cli/azure/webapp/deployment?view=azure-cli-latest). I ran the following command in order to create a new staging slot: az functionapp deployment slot create --name…
user989988
  • 3,006
  • 7
  • 44
  • 91
3
votes
1 answer

What is the correct format of connectionstring for Azure Service Bus when using Managed Identity for my App Service?

I have this App Service in Azure running as a Web Job. The application is a former Windows Service built using NServiceBus and I have been reconfiguring it to work in Azure. The application is using AzureServiceBusTransport and I have my Azure…
Per
  • 1,393
  • 16
  • 28
3
votes
3 answers

Azure App Service access restrictions with service tag not working

I want to limit the access to one of my app services to Azure API Mangement. In order to be independent from a single IP I created the following setting using service-tag-based restriction: However if I test my API using the Developer Portal I…
Alexander Schmidt
  • 5,631
  • 4
  • 39
  • 79
3
votes
1 answer

Waiting for a freshly deployed app service to be restarted in Azure Devops Release pipeline

I have a release pipeline that runs Azure App Service deploy task and then runs API management update task from "API Management Suite" by Stephane Eyskens. The API management task calls Swagger endpoint to update OpenAPI schema in the API…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
3
votes
1 answer

In Azure App Service, should I run one big Dockerfile or docker-compose.yml with separate containers?

When I was learning about Docker I was often told it's the best practice to run technologies in separate containers. For example, if I need nginx and php-fpm for my project, I should create a docker-compose.yml file and run two separate…
3
votes
2 answers

Azure App Services: How to restrict everything but one IP address

I have a Web API hosted in Azure App Services, and I want to use the restriction tool to restrict traffic for every single IP that exists, with the exception of the ip address that we want to actually call this service. How should I proceed? This…
3
votes
1 answer

Azure App Service - Always On vs Health Check

If I have one instance of app service is it still recommended to have enabled Health Check (e.g. for monitoring purpose)? If yes then what about functionality Always On? Doesn't it double requests which at the end do the same thing? I mean to keep…
krypru
  • 1,692
  • 3
  • 22
  • 29
3
votes
1 answer

How to create an OCSP request and validate response using Azure APIM?

As recommended over here, I am toying with enabling Azure API Management (APIM) as a way to reduce unwanted traffic to an HTTP-triggered Azure Function. The idea is to use APIM as a means to force the endpoint server (managed by Microsoft) to reject…
ericOnline
  • 1,586
  • 1
  • 19
  • 54
3
votes
1 answer

Azure App Services Add array of strings in configuration

Net core application and deploying the application in Azure App Services. In my application, I have an app settings.json file with below content "Roles": { "Roles": [ "Admins", "Users" ] } I have the below configuration in…
3
votes
1 answer

Is it possible to disable the kudu scm

Disable kudu for the running web app. Why? Kudu is consuming the CPU periodically and I want to stop that. So far I have tried to Kill the process by clicking on Properties >> Kill button. but this process gets start again.
3
votes
1 answer

Azure App Service is Up and Running but it shows default microsoft page

I am facing a problem regarding deploying my machine learning model on Microsoft Azure. After linking my github repo to azure, it shows that model has been deployed successfully. However when I click on the created app's url, it just shows that…
3
votes
2 answers

How to set .env for react app deployed with azure devops pipeline on app service

I developed a pipeline with CI/CD on azure Devops for deploying a React app on Azure web app service. Locally I'm using a .env file and this file is on .gitignore. I want to know how can i set the .env for reading it on production.
3
votes
1 answer

"Turn off" an Azure App Service and Azure SQL Server to reduce cost

I have a client with a web app running in Azure App Services and a SQL Azure database that the web app uses. This client will not be using these for the foreseeable future and would like to minimize costs. I know I can "turn off" the app service,…
Brent
  • 501
  • 3
  • 13
3
votes
1 answer

Azure - Virtual Application deployment overwrites root application

I'm trying to create Azure deployment of three applications (App Service with Virtual Applications). The structure should be as follows: /app-1 /app-2 / Where the 3-rd application is contained in the root, containing some static files (index.html,…
3
votes
1 answer

Azure Application Insights logging for Python Application - Set Exception properties explicitly

I am trying to send Exceptions from my Python application running in Azure App service to the designated Azure Application Insights instance. I am using OpenCensus python library for this purpose. The basic logging and exception are successfully…
1 2
3
46 47