All function apps and static websites under same certificate

QuarkHive Belgrade 1 Reputation point
2021-07-31T20:13:32.047+00:00

Is it possible to configure SSL for my several function apps and static websites (Blazor WASM apps) and how to do that?
Several Blazor WASM apps communicate several functions apps, using HTTPS as a required protocol. In some cases a function app is signing a JWT with a certificate.
For all function apps and Blazor apps I use a custom domain with subdomains for each app.
Can someone explain a general approach to cover a HTTPS, browser certificate valdidation, and everything needed for successful communication?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,239 questions
Azure Static Web Apps
Azure Static Web Apps
An Azure service that provides streamlined full-stack web app development.
762 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,516 Reputation points Microsoft Employee
    2021-08-02T03:48:58.497+00:00

    @QuarkHive Belgrade An SSL Cert is tied to a domain, so you would require one for each but if they are sub-domains, you could get a wildcard certificate that can be used across all of them.

    Another approach is to use a reverse proxy of sorts that routes requests to your backend based on the path. Azure Front Door would be a good option here.