Hi,
I've added a subdomain today to my app on App Engine. The app is PHP Laravel.
The app makes use of the default Google Managed SSL.
In addition, I added a middleware to make sure to add the following header:
$response->headers->set('Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload');
Now, when I access the app via the custom domain, I can see the response header there. However, the app stays on the HTTP and is not being served on HTTPS.
Is there anything else to do to make sure the custom domain is always accessed via SSL?
Thanks
Bill