Questions tagged [azure-web-apps]

143 questions
0
votes
1 answer

Azure web app went down with an error: Could not load type 'System.Diagnostics.InjectedFunctionParent' from assembly 'System.Private.CoreLib'

Last Sunday one of our azure web apps went down for no obvious reason. There had been no code deployments for the past 5 days, the app was running fine on an S3 service level on a paid subscription. The only logical explanation I could come up was…
0
votes
0 answers

PHP loaded in subdirectory has significantly slower TTFB than in root

I have two identical Azure web app services (IIS) running PHP 7.3, 32bit. On webservice1.com, I have installed Wordpress on the root. This has a TTFB of 225.24ms. On webservice2.com, I have copied all the Wordpress files from the webservice1.com…
0
votes
1 answer

What is the best way to block spam referrers in an Azure web app?

I have a very low traffic Azure web app written in .net for sharing programming 'books' using a new medium that I created. Currently, I am really the only one creating content on the app. For the second time in a few weeks I have had a bot (I am…
Mark M
  • 101
  • 1
0
votes
1 answer

Azure App Services - is it possible to unbind webapp from shared IP address?

Good day, As we know, creating IP based TLS binding (contrary to SNI binding) allocates a dedicated IP address to App Service webapp. But it still remains accessible via the IP shared with other webapps (including webapps of other customers). In…
0
votes
0 answers

Disk full on Azure or what?

I get this exception (from a plugin) in the logs of the web app: System.IO.IOException: There is not enough space on the disk. This is when calling new System.IO.FileStream(...). I've verified that there are plenty of space on app disk and on the…
bang
  • 101
0
votes
0 answers

Liunx based Azure PHP App service is missing MYSQL Driver

I'm trying to host WordPress website on Azure Linux App service. I got this error: Your PHP installation appears to be missing the MySQL extension which is required by WordPress I searched everywhere but I didn't find how to install the MYSQL…
0
votes
0 answers

How to fix "port 80 already in use" error in Azure App Service

I'm trying to deploy a Spring Boot Rest Api (gradle) to an Azure app service. There is an executable jar in the /home/site/wwwroot folder and a startup script. When I execute this script, the spring api starts but throws the following error: "The…
Sige VV
  • 1
  • 2
0
votes
1 answer

How to Use Azure Key Vault w/ Web App

I have an Azure Web App for a client project. The project also requires Azure SQL Databases and Blob Storage. All pieces mentioned are up and running but we've been told we can't have any password stored in the web.config or in the azure portal…
jrd1989
  • 698
  • 15
  • 48
0
votes
2 answers

Does azure "az webapp up" run build processes?

Currently I'm writing a Django (python) application running on Microsoft Azure cloud. Azure offers several different ways to deploy your app: Zip upload Git repository Cloud shell using "az webapp up" command In the documentation, it's mentioned…
quano
  • 131
  • 1
  • 4
0
votes
1 answer

Azure Scheduler that updates both Azure Database and On Premise SQL Server Database

I have a REST Service that needs to update data into Azure SQL Server database and also into On Premise SQL Server database. Both databases should have same data in certain database tables. Scheduling Service that runs in Azure and process data…
0
votes
1 answer

Azure WebApp Socket can't connect

I have a ASP .NET application hosted as a WebApp in Azure and a Xamarin client app that consumes that WebApi in Azure. As soon as I changed my webapi to an Azure WebApp, which was previously hosted in non-azure VM and it was working fine, my Xamarin…
0
votes
1 answer

Azure Webapp and SQL Secure networking

I believe i'm trying to do simple pretty basic with Azure, yet so far I didn't found anything "safe". Basically, I just want to have a Azure WebApp and a Azure SQL Server (no VMs) communicating to each other, the WebApp been public on internet, and…
frank
  • 133
  • 1
  • 1
  • 5
0
votes
1 answer

Azure App Service Tiers that Permanently Store Diagnostics Data

I need to permanently store diagnostic data for my webapp. I'm currently running in the Basic tier. If I upgrade to standard or premium, will either of those guarantee permanent diagnostic data storage? I can't find anything on this from Microsoft.
jrd1989
  • 698
  • 15
  • 48
0
votes
1 answer

How do I restart an unresponsive Azure Web App (not responding in portal)

I have two Azure Web Apps, that are not responding. They're on the same app service plan. Normally I would restart them from portal, but that is not possible, it seems. Advanced tools (kudu) are not working either - link does not work. How can…
Kjensen
  • 1,039
  • 10
  • 28
  • 39
0
votes
2 answers

Restrict access from Azure Vault only to App Services in production

I would like to restrict and give access to my secret only to my application in production. Even when I enabled Firewalls and virtual networks > Selected networks and select allow Microsoft trusted services the return when I try to access the key is…