Questions tagged [azure-webapps]

Azure App Service Web Apps (or just Web Apps) is a service for hosting web applications, REST APIs, and mobile back-ends. There are many supported languages such as .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on either Windows-based or Linux-based environments.

528 questions
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
1 answer

How to redirect requests to a different web app hosted via Azure App Service

I have two web apps hosted via Azure Web Services, with the URL https://example1.azurewebsites.net and https://example2.azurewebsites.net respectively. What I am looking at is that I'd like to redirect requests for example1 to example2 without any…
woodykiddy
  • 6,074
  • 16
  • 59
  • 100
3
votes
2 answers

What is the purpose of the "Allow" option of the client certificate mode in an Azure App Service?

I'm trying to secure my Azure Web Application by adding a .pfx certificate. In Azure portal I've added my pfx file: App Service -> TLS/SSL settings -> Private Key Certificates (.pfx) -> Upload Certificate Then under the settings blade…
SuperPoney
  • 563
  • 6
  • 21
3
votes
1 answer

Can I view the console logs of my web app in azure?

I'm deploying a web app in azure using the container registry I created and an auto-generated webhook. And now I want to access the console logs of the webapp container, is this possible?
Roei Rom
  • 135
  • 1
  • 12
3
votes
2 answers

ASP.Net Core - Application Insights - Stack Trace

I'm setting up a pretty simple ASP.Net Core (2.2) MVC Web App. I want to be able to see any application errors (500s) and what caused them so it seems like Application Insights is the place to look. If I go into Application Insights / Failures…
3
votes
2 answers

Trouble with URL rewrite using Vue Router HTML5 History Mode on Azure Web App

I serve a Vue SPA from an Azure Web App. There is no server side logic (or none relevant to this problem anyway). I am using Vue Router in HTML5 history mode. It works really well. The only problem is what happens when a user tries to access a view…
Tor Haugen
  • 19,509
  • 9
  • 45
  • 63
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
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

Azure WebJob QueueTrigger execution

I am running multiple simultaneous instances of a QueueTrigger within an Azure webjob. It is a single function, but called multiple times in parallel. My function uses static variables to cache data that is used multiple times. Sometimes when the…
Tony Cheetham
  • 877
  • 7
  • 18
3
votes
1 answer

Azure WebApps Deploy with Jenkins

I'm ripping my hair trying to publish a .Net app to Azure WebApps using Jenkins. Following this guide, I get stuck with the following error: P:\Scripts\Azure\PublishProfiles\my.PublishSettings(1,1): error MSB4068: The element is…
Johan
  • 5,003
  • 3
  • 36
  • 50
3
votes
1 answer

Azure WebApp FTP not updating

I've published a web app through FTP in Azure WebApps and it worked fine, but now when I open the FTP client in Windows Explorer and replace the index.html file and restart the web app, my changes are not reflected and the former version of…
MVZ
  • 111
  • 1
  • 8
3
votes
0 answers

Why does azure console write "Bad request"? (First app on nodejs in Azure)

I was trying run app on node.js in Azure, but something wrong. What i did Create web-app in Azure and deploy code from repository of bitbucket. https://bitbucket.org/devsnice/nodemysql After i'm entering in console and writing "node index.js",…
Borisov Semen
  • 448
  • 5
  • 8
3
votes
0 answers

build fail error while I'm trying to deploy my application in eclipse using azure

I'm trying to deploy my application in to azure using eclipse but I'm getting build fail C:\Users\miracle\workspace13\helloworld_onAzure\package.xml:156: Azure SDK v2.4 or later is not installed after
2
votes
2 answers

ios/safari can not load mp4 from Azure Web app

I have a Azure web app (hosting a react app) where ios/safari users can not load my .mp4 files. Other browser have no problem. On chrome the file is returned 200 OK, as media type video/mp4 . It is a linux container and it servse the files using(as…
Todilo
  • 1,256
  • 3
  • 19
  • 38
2
votes
0 answers

Azure web app--> The client has disconnected - An operation was attempted on a nonexistent network connection

Get below error in Azure web app .NET FW -> .NET Core 3.1 Appy type --> MVC Core App Azure web app configuration --> .NET 6 LTS Other config --> 64 bit , integrated pipeline , HTTP 1.1 , WebSockets OFF , TLS -> 1.2 Request Size in around 1 MB. First…
Sagar
  • 645
  • 2
  • 9
  • 31
1 2
3
35 36