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

Flask Azure web app deployed successfully but showing default page

I deployed a python flask app with azure web service using local git. The status in the deployment center shows "success" but when i go to the web page, it is still the default page that tells me I'm running python 3.6.6. When i navigate to the kudu…
qweq
  • 83
  • 1
  • 7
3
votes
1 answer

Chrome driver is not working on azure web apps

I have used .NetCore2 App and try to takes the screenshot of given URL. It works perfect on local but After deploy to Azure have problems on create Webdriver. at OpenQA.Selenium.DriverService..ctor(String servicePath, Int32 port, String…
3
votes
2 answers

Kestrel address binding errors in azure app service

I have an aspnet core 2.2 app which looks like this: return WebHost.CreateDefaultBuilder(args) .ConfigureAppConfiguration((builderContext, config) => { var env = builderContext.HostingEnvironment; …
devlife
  • 15,275
  • 27
  • 77
  • 131
3
votes
1 answer

Deploying Multiple WebJobs from the Same Project in a Azure DevOps Release Definition?

So the way that we've structured our code is that we've got several projects in our solution that each have multiple webjobs. We've configured a manual way of releasing these multiple webjobs using the run.cmd files and copying over the pertinent…
3
votes
4 answers

How to set ConnectionString configuration for Azure App Service in Azure DevOps?

I am deploying a website written in Asp.Net Core 2.2 which has a connection to an Azure Sql Database. Where do I set the Connection String in the Azure App Service deploy task in Azure DevOps? In my WebApp, the DefaultConnection is in…
Mark Allison
  • 6,838
  • 33
  • 102
  • 151
3
votes
1 answer

The reply URL returns error using https://xxxxx.azurewebsites.net/xxxxxxx/ and works well using https://xxxxx.azurewebsites.net/

I'm facing issue with the reply URL when authenticating on an Azure website. Everything works well when logging in normally, but it generates the "reply URL" error when logging in using some other pages. As an example, using…
3
votes
1 answer

Azure Python flask App - AD authentication issue

This could be a little complicated to explain, so will do my best. Current Solution I have a python flask app, which will be deployed to an App Service within Azure. I want the user to login to the app service Via Azure AD authentication. To do…
3
votes
1 answer

SignalR core: is ARR affinity needed when web sockets are enabled and the Azure app service is scaled out to multiple instances?

I'm working on an asp.net core 2.2 MVC web application. We are using signal r core version 1.1.0 (added via the nuget package Microsoft.AspNetCore.SignalR). The client side application is an angularjs application referencing version 1.1.4 of the…
3
votes
0 answers

Duplicate log entries showing in the Azure Logstream of an Azure App Service

I have a .Net Core 2.2 web app that uses the out-of-the-box ILogger to log information about the application. When debugging locally the information is logged as expected in the debug console. However, when the application is deployed to Azure as an…
Benajax
  • 31
  • 6
3
votes
0 answers

How to deploy shiny apps in Azure Webapps for container?

I am trying to deploy the standard R shiny example app in an Azure Webapp for Containers. I am using Azure container registry. I have managed to deploy the app but the plots are not showing when I login to the webapp. It seems like shiny-server is…
Kasper Christensen
  • 895
  • 3
  • 10
  • 30
3
votes
1 answer

How to publish and use a font in Windows Azure Web Apps?

I am trying to publish and use a font on my Windows Azure web app. The font file is bahnschrift.ttf. I can see the file at the correct location on Azure so I’m sure it was published correctly. I want to use the font to draw text onto an image. This…
Hank Tuff
  • 185
  • 5
  • 12
3
votes
1 answer

Stale WEBSITE_HOSTNAME value on app service after swap

I have an Azure App Service with production and staging slots. I'm running a couple of websites using virtual directories. I have tasks setup to notify me when each website has been warmed up. I'm using the WEBSITE_HOSTNAME environment variable to…
Tom
  • 365
  • 3
  • 19
3
votes
1 answer

Assign/import/issue an auto-renewed App Service Certificate in Azure?

I have an App Service Certificate in Azure that is set to auto renew. When I try to import it into the associated App Service, however, I get the error: App Service Certificate is not issued. How do I “issue” an App Service Certificate so that it…
Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77
3
votes
1 answer

Using AzureDevOps Build Agent for Secure Azure SQL Database connection from App Service using a managed identity

My struggle is specifically with fully automating things with the AzureDevOps build agent in the default configuration. I'm trying to use the App Service Managed Identity…
3
votes
2 answers

Websockets on Spring boot website hosted on Azure returns Error 503/403

I have built a webapp on Spring Boot using Spring Security with Azure AD authentication and Websockets to communicate with clients. Locally this works perfectly but when i deploy it as an Azure Web App the Websocket connection fails with Error 503…
jared
  • 473
  • 3
  • 16