2024

Back to top ↑

2023

Troubleshooting Azure Functions Javascript

11 minute read

You can find all the best practices for reliable Azure Functions in this reference, this blog post will complement some of these best practices and how you c...

App Service Linux security FAQs

5 minute read

The platform components of App Service, including Azure VMs, storage, network connections, web frameworks, management and integration features, are actively ...

How to set Nginx headers

3 minute read

This post will cover how you can modify Nginx headers, in specific for security perspective but it applies for any custom header needed. Note: This is jus...

Back to top ↑

2022

Troubleshooting Common iisnode Issues

11 minute read

Azure provides built-in diagnostics to assist in debugging node applications hosted on Azure App Service Windows. This article will cover how to enable loggi...

Running gRPC with Container Apps

4 minute read

Azure Container Apps is a new offering that runs on top of Kubernetes. A nice feature of this is that it supports gRPC, which uses HTTP/2 as its transport pr...

Docker User Namespace remapping issues

10 minute read

Docker has a concept of User namespace and User namespace remapping (Otherwise known as userns). When this is used, this remaps users in the container to les...

Serving SPAs with PHP Blessed Images

16 minute read

This post provides information on how to serve Single Page Applications(SPAs) with Azure App Service on Linux PHP “Blessed” Images.

Using PM2 on App Service Linux

6 minute read

PM2 is a production process manager for Node.js applications that allows you quickly start, manage, scale node processes and keep your application online. It...

Back to top ↑

2021

Back to top ↑

2020

Back to top ↑

2019

Back to top ↑

2018

Change PHP_INI_SYSTEM configuration settings

less than 1 minute read

PHP_INI_SYSTEM level settings cannot be changed from .user.ini or ini_set function. To make change for PHP_INI_SYSTEM settings on Azure web app, follow the s...

Back to top ↑

2017

Use JpGraph library with Azure Web App

less than 1 minute read

JpGraph is a graph creating library for PHP5 and PHP7.0. The library is completely written in PHP and ready to be used in any PHP app. Here is a demo how to ...

Azure App Service Java CI/CD with Maven

less than 1 minute read

Azure App Service provides integration with Github, Bitbucket, etc however, for Java webapps, it does not provide a default way to build and deploy the webap...

Capture Java VM Traffic using Fiddler

2 minute read

Customer’s using the Azure SDK for Java may need to capture network traffic for the REST API requests to troubleshoot issues. Below are the steps to configur...

Back to top ↑

2016

Meteor 1.4 App on Azure App Services

2 minute read

Meteor is a full-stack JavaScript platform for developing modern web and mobile applications. Meteor includes a key set of technologies for building connecte...

Using wildfly-swarm on Azure App Service

less than 1 minute read

This blog is for the customers who wants to use wildfly-swarm container which is the reconstitution of the popular WildFly Java Application Server. As you kn...

WordPress MultiSite 404 on Admin Dashboard

less than 1 minute read

If you are experiencing a 404 when switching to the dashboard of a given site, verify the web.config is accurate. We’ve found that older versions of WordPres...

Uploading Large Files to Azure Web Apps

2 minute read

Attempting to upload a file larger than 28.6MB to Azure Web Apps can result in a HTTP 404.13 for WordPress developers or a HTTP 502 for Tomcat Manager. This ...

Use MySQL server on an Azure VM

2 minute read

Here is an option that you can host MySQL server on an Azure VM, connect your PHP sites such as WordPress, Joomla, OpenCart, etc. to the database hosted on t...

Sample Nodejs App on Azure App services

less than 1 minute read

Create a azure webapp Browse to Kudu In your favorite Microsoft browser, surf to http://.scm.azurewebsites.net. Ex: if your Azure App Service Web App na...

Profiling Java process on Azure web apps

1 minute read

There are certain situations when your Java web application is not performing as you expect it to. To understand where the problem lies, you may need to prof...

Meteor 1.2 app on Azure Web Apps (OS X)

3 minute read

Refer Below link for running Meteor 1.4 App on Azure App Services https://blogs.msdn.microsoft.com/azureossds/2016/08/24/meteor-1-4-on-azure-app-services/  

Using Bower in Node.js Azure WebApps

2 minute read

Bower is a package manager for web app. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the packag...

Back to top ↑

2015

Enable WordPress Error Logs

3 minute read

Logs can help identify slowness, HTTP 500 Fatal Errors,  WordPress “white screen of death” and other issues your Azure App Service Web App may be experiencin...

Convert Apache .htaccess to IIS Web.Config

1 minute read

A web.config file is the settings and configuration for applications on IIS Server (ex: Azure Paas Websites ). But what if you’re coming from a Linux host – ...

NPM3 on Azure Web Apps

2 minute read

On Windows, the file system itself cannot seem to cope very well with too deeply nested node_modules directory used by NPM. This blog provides details on how...

Debug Node.js Web Apps on Azure

3 minute read

Azure provides built-in diagnostics to assist with debugging Node.js applications hosted in Azure App Service Web Apps. In this article, you will learn how t...

Troubleshoot - Azure Api App

1 minute read

An API app is an App Service web app with additional features that enhance the experience of developing, deploying, publishing, consuming, managing, and mone...

PHP Error Log on Azure Website

2 minute read

1. E_ERROR - Fatal run-time errors. These are the errors that can not be recovered, execution of the script is halted (http://php.net/manual/en/errorfunc.con...

LAMP Migration to Web Apps

9 minute read

NOTE: Please take a full backup of your code and database before performing any changes to your site.

Back to top ↑