I setup an S3 bucket named www-example-com which contains an index.html file. The bucket is configured as "Enable website hosting" with an "Index Document" named index.html
I'm able to get the index.html file working by using http://{bucket-name}.s3-{aws-region}.amazonaws.com
However this syntax does not support HTTPS
Yet I'm able to access my bucket over HTTPS using https://s3.amazonaws.com/{bucket-name}
However this url does not support an index.html file.
Examples are:
http://www-example-com.s3-website-us-east-1.amazonaws.com
workshttps://www-example-com.s3-website-us-east-1.amazonaws.com
does NOT workhttps://s3.amazonaws.com/www-example-com/
does NOT workhttps://s3.amazonaws.com/www-example-com/index.html
works
Is there any way in S3 to get the index.html file working in conjunction with HTTPS?