Tag: Azure Function
-
Run Azure Function locally on HTTPS

Have you ever needed to test an Azure Function locally but using HTTPS instead of the default HTTP? This post is for you! 🥳 To achieve this you will need two things: Getting the certificate Starting with the certificate, in case you don’t have one, you can create a self…
-
Set Azure Function timeout without republishing

A while ago I needed to change an Azure Function timeout but I wanted to avoid, if possible, to republish it. After a little while searching I discovered this page which explain how to overwrite the values specified in the host.json file with the values specified from the Azure configuration.…
-
Change or remove the base /api path in Azure Functions

Cit: “Everything works and I like it, but I don’t want the /api in the URL, can you remove it?”. That was the incipit to this post. Before that I never wondered if there is a configuration or something to change or remove the /api base URL in Azure Functions.…