I wrote an article here “How to disable/enable HTTP/2, Azure App Service” that showed how to change an Azure App Service setting Resource Explorer. You can also do this from Postman, which I wrote about here “Using Postman to call Azure REST APIs” . The most challenging aspect of doing this is getting the Bearer […]
Read More →Tags: Azure
How to disable/enable HTTP/2, Azure App Service
The official announcement can be found here “Announcing HTTP/2 support in Azure App Service”. Currently, to disable or enable HTTP/2 on an Azure App Service you need to use Resource Explorer. I have written numerous articles about Resource Explorer so if you need more information about it and what it is, take a quick look […]
Read More →How to pick the stamp or scale unit where your App Service will run
You can’t. The best you can do is pick the region / location. Read the bottom for a way to try and influence it. A scale unit, stamp or tenant is something which I have referred to here. “How to disable TLS 1.0 on an Azure App Service Web App” The scale unit is identified […]
Read More →How to create an Azure Function in Visual Studio
These are some good instructions as well “Create your first function using Visual Studio”. But I like to try it out myself. Check out these other articles as well. How to create an Azure Function in Visual Studio How to connect to a database from an Azure Function Deploy an Azure Function created from Visual […]
Read More →How to connect to a database from an Azure Function
I created a simple Azure Function and now I want to connect it to a database. Check out these other articles as well. How to create an Azure Function in Visual Studio How to connect to a database from an Azure Function Deploy an Azure Function created from Visual Studio Check out all my Azure […]
Read More →Deploy an Azure Function created from Visual Studio
I created an Azure Function and added some some code to connect to a database and now I want to deploy it to the Azure platform. How to create an Azure Function in Visual Studio How to connect to a database from an Azure Function Deploy an Azure Function created from Visual Studio Check out […]
Read More →An error occurred
While I was writing these articles about creating, developing local and deploying an Azure Function App, I received this error, Figure 1. How to create an Azure Function in Visual Studio How to connect to a database from an Azure Function Deploy an Azure Function created from Visual Studio Check out all my Azure Functions […]
Read More →Publish failed
While I was writing these articles about creating, developing local and deploying an Azure Function App, I received this error, Figure 1. How to create an Azure Function in Visual Studio How to connect to a database from an Azure Function Deploy an Azure Function created from Visual Studio Check out all my Azure Functions […]
Read More →How to modify the host.json file for an Azure Function
It is not recommended to set the fileLoggingMode to always for very long as it will consume a lot of compute and storage space. Use this only when troubleshooting. Check out an older blog I wrote on this here out too. Here is an example of a host.json file with all possible options.
Read More →Azure Functions – Timer
The labs contained in this article show how to create, configure, code and monitor an Azure Function with a Timer. There is a detailed document here “Timer trigger for Azure Functions” which discusses the Timer trigger in detail so I will not readdress that content. I have written an AzureFunctionConsumer program which I host on […]
Read More →