I have a cloud function that I would like to expose via SSL and also using a custom domain name. Ex:
My cloud functions: https://us-east1-xxxx.cloudfunctions.net/my-function
custom name: https://my-custom-domain/my-function
I configured a CName for it, but I am getting an SSL error message:
(51) SSL: no alternative certificate subject name matches target host name...
Based on my research, an option is to use firebase.
Is there any other way to do it? (I am not using firebase currently, I would like to avoid to bring more complexity to the solution)
Thanks