I purchased a domain (say, example.com
) from Google and my Django application (say, mysite.herokuapp.com
) runs on Heroku. The CNAME is set on Google to forward the http requests to the Django applicaiton on Heroku. Forwarding requests from http://mysite.example.com
to mysite.herokuapp.com
works just fine.
Recently, I need to introduce progressive-web-application
to my application and it requires the https
protocol, instead of http
, that is, the URL now has to be https://mysite.example.com
and it doesn't work for Google domains. I tried https://mysite.herokuapp.com
and it works fine, which means Heroku already supports https
. However, I tried (and also googled) for a long time without finding a solution.
So how do I set the Google domain to use https
protocol?