Amazon.com just announced that one can host static web sites in a S3 bucket. I went to their setup page at http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?WebsiteHosting.html and created a bucket for my static web site, and it worked fine. I have an URL of the form http://[my bucket name].s3-website-us-east-1.amazonaws.com/.

However, I would like to point a subdomain that I own (e.g. static.mydomain.com) to my static web site at Amazon S3. Has anybody figured out how to do that?

I appreciate any help you can give me.

link|improve this question

64% accept rate
feedback

4 Answers

up vote 42 down vote accepted

It turns out that to make it work, you cannot just map any arbitrary subdomain to any arbitrary bucket. The fully qualified subdomain name must be the same as the S3 bucket name.

  1. Suppose the name of your site is static.mydomain.com. Then you need to create a S3 bucket with that same name, named static.mydomain.com.
  2. Once you configure that bucket as a S3 static web site, it will have a URL assigned to it that looks something like http://static.mydomain.com.s3-website-us-east-1.amazonaws.com.
  3. Go to your domain host and map your subdomain to the URL from step 2. In enom.com, that meant mapping the host "static" to the address "static.mydomain.com.s3-website-us-east-1.amazonaws.com" as a CNAME record.

Thanks to Uriah and David for suggestions. I eventually got my answer at an Amazon AWS forum.

link|improve this answer
will this work for https? – ian Apr 13 at 9:30
I don't know. You'll have to try it out. Also, you will probably be piggybacked on Amazon's SSL certificate, and not your own. – Jay Godse Apr 15 at 13:00
feedback

Make sure that you follow the S3 DNS bucket naming conventions when creating your bucket.

Then:

  1. Enable S3 Website support for the bucket using the AWS Management Console at Properties --> Website

  2. Make sure the files in the bucket have public read permissions

  3. Try the website using the endpoint listed in the Management Console

  4. Setup your CNAME using the listed endpoint (e.g. www.example.com CNAME www.example.com.s3-website-us-east-1.amazonaws.com)

link|improve this answer
I did all 4 steps. Step 3 works. The cname in step 4 configures (with enom.com, which does this successfully with other subdomains), but neither hitting my s3 subdomain with a browser nor pinging it work. With heroku.com and blogger.com you have to tell them which of your subdomains is going to be hitting which heroku-app or blogger-blog. S3 static web sites doesn't seem to have this. – Jay Godse Feb 18 '11 at 18:17
2  
@Jay Godse What's the name of your website-enabled bucket and it's region? – Uriah Carpenter Feb 18 '11 at 21:58
feedback
  1. Create a hosted zone say mydomain.com. You can use a web based UI DNS30.
  2. Now create a CNAME entry for this hosted zone.
  3. Add a resource record with following detail Name as "mydomain.com" Type as "CNAME" Value as "mydomain.com.s3.amazonaws.com" TTl as "on your required configuration"

Hope this will also work for static.mydomain.com

Regards-

Udit

link|improve this answer
feedback

How about using a DNS service, like the Route 53 that Amazon provides. Set it up with a CNAME from your sub domain to the public bucket URL. Of course, if your domain company provide CNAME configuration, that could work directly.

link|improve this answer
I did configure a CNAME. However with other places where I do CNAMEs (e.g. blogger.com, heroku.com), I also need to configure something there to tell them that one of my subdomains is pointing to that url at blogger or heroku). I couldn't figure how to configure my S3 bucket to accept the CNAME from my subdomain. – Jay Godse Feb 18 '11 at 16:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.