Using the PHP Amazon SDK I am successfully able to set a 30 second access for a URL using the following functin: get_object_url($bucket, $filename, $preauth = 0, $opt = null)

$s3->get_object_url($results['s3.bucket.name'], $results['s3.file.name'], '30 seconds');

Now, the issue with this is that it returns a fantastic URL:

"s3.url": "http://THECOOLEST.BUCKET.INTHEWORLD.EVER.s3.amazonaws.com/2011/04/18/image/png/8ba2d302-a441-45d4-8354-08e2b7e1a325.png?AWSAccessKeyId=XXXXXXXXXXXXXXXXX&Expires=1303162244&Signature=AWdUnHSaIBDmRcbwo2RFSUQaqBM%3D",

When I change the URL to the CNAME we use for cloudfront, the ACL doesn't work. Anyone know how to get_object_url with the CNAME configured?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Cloudfront and S3 are two different things.

You need to setup a CNAME for your S3 bucket. See the AWS docs for more info: http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?VirtualHosting.html#VirtualHostingCustomURLs

link|improve this answer
Geoff, the CNAME is already configured. The ACL does not apply to the CNAME url ... only the default URL. This is also a cloudfront question ... not an S3 specific question. – sdolgy Apr 19 '11 at 8:24
1  
@sdolgy - Your question is still confusing. get_object_url generates a url for a file in S3 but later on you talk about a Cloudfront CNAME. CNAMES and Urls for Cloudfront and S3 are different. To generate a url for a Cloudfront file you would use get_private_object_url in cloudfront.class.php. See docs.amazonwebservices.com/AWSSDKforPHP/latest/… – Geoff Appleford Apr 19 '11 at 8:44
there you go ... that's the answer i was looking for. cheers for following up Geoff. – sdolgy Apr 21 '11 at 19:18
@sdolgy - no problem :) – Geoff Appleford Apr 21 '11 at 21:05
feedback

Your Answer

 
or
required, but never shown

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