Current App:
- Goole App Engine on a custom domain:
myapp.com
- Google Cloud Storage bucket on a custom subdomain (it uses DNS):
images.myapp.com
- I have SSL certificate with the
images
subdomain
My question is: Is possible to have this configuration with SSL?
Things I have tried:
- Load balancer. I cannot figure out how to redirect everything that is not
/images/*
to the GAE (it seems it only works with backends) dispatch.yaml
. I think it only works for the services you deploy- In App Engine Settings I have added
images.myapp.com
, but as the redirection ofimages.myapp.com
is done at DNS level, the secure layer is lost
Any suggestion or idea is more than welcome.
Thank you!