gerrywastaken / s3up

Command line tool to upload files to Amazon S3 for static file hosting according to YSlow's best practices.

Home Page:http://clickontyler.com/blog/2009/02/serving-static-content-on-amazon-s3-with-s3up/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

s3up

s3up is a command line tool to store static content in Amazon S3 following the best practices of YSlow. Specifically, it's for users who want to use S3 as a content delivery network for their images, style sheets, JavaScript, etc.

For each file it uploads, s3up sets a far future expiration date, gzips the content, and versions the file by combining the filename with a timestamp. Each of these actions are optional and can be controlled via the command line.

A longer explanation and example usage can be found here.

FEATURES

  • Upload multiple files at once - including directories
  • Automatically append timestamps onto files for versioning
  • Upload a gzipped version of each file
  • Add far future expiration header to each file

INSTALL

Requires PHP5 and php_curl extension.

  • Place s3up in a convienient location and make executable.

You're done!

USEAGE

./s3up.php [-ctxz] [options] recipientBucket saveAs uploadFile

recipientBucket - The bucket that your file will be uploaded to on s3.
saveAs - The file name that the file will be given on s3 (before any version strings are added)
uploadFile - The path to the file you wish to upload

-c Use MD5 checksum to avoid duplicate PUTs, useful for resuming uploads.
-t Append timestamp to uploaded filename for versioning.
-x Set far future expiry headers on uploaded file.
-z Upload a gzipped version in addition to the main file.

--version Appends a timestamp (string) of your choosing to each file.

--key Amazon S3 key
--secret Amazon S3 private key\n";

If --key and --secret are not specified s3up will read values from the AMZ_KEY and AMZ_SECRET environment variables.

EXAMPLE

The following example is used to upload the file /tmp/randomTextfile/foo.txt to a bucket called "mybucket" and names it "textfiles/bar.txt" (S3 does not actually support folders inside of a bucket, but you can put a slash in the file name). The key and secret I have used are just random codes that I have generated, so you will need to substitute them for real S3 keys:

./s3up.php -ctxz \
--key 4D2872664A354F2D454C \
--secret u/0XdzB4WjtSuJnjnjYHKU/wh6Hlfvxpa/Yn5NQQ \
mybucket textfiles/foo.txt /tmp/randomTextfile/foo.txt

UPDATES

Code is hosted at GitHub: http://github.com/tylerhall/s3up

LICENSE

The MIT License

Copyright (c) 2009 Tyler Hall

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Command line tool to upload files to Amazon S3 for static file hosting according to YSlow's best practices.

http://clickontyler.com/blog/2009/02/serving-static-content-on-amazon-s3-with-s3up/


Languages

Language:PHP 100.0%