Another cool but simple feature of Azure Functions is proxies. The Proxies menu item is directly under your functions in your Function App. With proxies, you can put a small, lightweight proxy in front of basically anything.
Azure Functions proxies
Creating a proxy
To show you that really anything goes, we're going to set up a proxy to https://www.microsoft.com/en-in/:
- Create a new Function App.
- Go to Proxies.
- Click the + New proxy button.
- Give your proxy a name, such as MyFirstProxy:
- Define a Route template. This is the path after the base URL. Put myfirstproxy here.
- We can also specify which HTTP methods are allowed. Select Selected methods and click the GET method.
- The backend URL is the...