I’m stuck in deploying my fastify app on Azure app service linux. I’m using azure devops for pushing my code to app service. I’m using 8080 port for running my application and its works fine on my local. localhost screenshot But the same code is not working on my Azure app service linux. Bel…
Tag: azure-web-app-service
Adding dependencies to default Github Actions script
I have a Python web app on Azure that gets deployed via Github actions. I use the default deployment script that is created by the Azure deployment center (full script shown below). In order for my application to work, I must SSH into the deployment machine after each deployment and manually activate the virt…
Azure + gunicorn + flask + Azure Web App Linux: ModuleNotFoundError: No module named ‘flaskr’
the use case I have followed the flask tutorial on those pages: https://flask.palletsprojects.com/en/1.1.x/tutorial/ The project directory is the following : run the web app The web app works by running the script ‘run_app_prod.sh’. the code works on my local machine (ubuntu 20.04) but not on azur…
Package import error when running Python 2 app on Azure App Services
The application works fine on my local linux server but I have trouble of running it on Azure. I checked the Files folder and all python libraries are installed correctly under /antenv2.7/lib/python2.7/site-packages. Here is my pip requirements file: But when gunicorn starts, it generates this error. I don…
Azure Docker Web App – Failed to update data for container settings
I’m trying to configure continuous deployment for my Web App in Azure so it deploys every time I push an updated container image to the Azure registry. However, when I go to “Container Settings” and set “Continuous Deployment” to true and then hit save I get the following error: …
How to use Mysql Connection String inside PHP code which is served by Azure Lunix App Service
I’m trying to host WordPress to Azure lunix App service. I created a Azure Database for MySQL, then I got the web app connection string from the connection strings screen. The connection string format is Then I created a Linux based app service and added the MySQL connection string to its configuration.…
How to connect Azure Web App througt a Hybrid Connection to Oracle Linux
I was looking for the way to connect my Azure Web App using a hybrid connection to my On Premise Database server, Oracle Linux. Any suggestions? greetings. Answer Unfortunately, Hybrid Connection Manager does not Support for Linux. The Hybrid Connections feature requires a relay agent in the network that host…
Persisting content across docker restart within an Azure Web App
I’m trying to run a ghost docker image on Azure within a Linux Docker container. This is incredibly easy to get up and running using a custom Docker image for Azure Web App on Linux and pointing it at the official docker hub image for ghost. Unfortunately the official docker image stores all data on the…