I created an AWS S3 bucket and uploaded my application. When I enter the endpoint into a browser url, the url alerts me to the fact that the site is not secure. When I look at the console.log, I see the following warning:
This page includes a password or credit card input in a non-secure context.
Currently, I reference my endpoint as
http://.s3-website.us-east-2.amazonaws.com
This was generated by AWS when I created my domain in the bucket. I tried entering
https://.s3-website.us-east-2.amazonaws.com
But this gave me a url not found error page.
Where can I find the setting so I can reference my site with https instead of http?
Thanks.