Reputation: 4303
So the question is simple, does Azure Functions work over HTTPS or they using only HTTP? Can't find such notes in the documentations. I'm missing something obvious.
Upvotes: 1
Views: 1824
Reputation: 35134
Azure Functions definitely support HTTPS. If you create an HTTP triggered function, and then click the "Get function URL" button you will see a URL like
https://myawesomefunctions.azurewebsites.net/api/HttpTriggerCSharp1
Behind the scenes Function App is running on Web App, so you should be able to configure HTTPS with your custom domain, in case you need to expose the endpoints with nicer domain.
Upvotes: 3