刘凡 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
..
etc 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
swifts3 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
tests 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
tools 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
.gitignore 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
AUTHORS 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
CHANGELOG 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
LICENSE 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
README.md 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
makedeb 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
run_tests.sh 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
setup.cfg 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
setup.py 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây
tox.ini 9ff4d1d109 add S3,archive,truncate 2 năm trước cách đây

README.md

Openstack Swift middleware to support Amazon Simple Storage Service API

SwiftS3 middleware emulates AWS S3 REST api on top of Swift.

The following opperations are currently supported:

* GET Service
* DELETE Bucket (Delete bucket; abort running MPUs)
* GET Bucket (List Objects; List in-progress multipart uploads)
* PUT Bucket
* DELETE Object
* GET Object
* HEAD Object
* PUT Object
* PUT Object (Copy)

To add this middleware to your configuration, add the swifts3 middleware before the auth middleware and before any other middleware that waits for swift requests (like rate limiting). Example can be found in etc/proxy-server.conf-sample

To set up your client, the access key will be the concatenation of the account and user strings that should look like test:tester, and the secret access key is the account password. The host should also point to the swift storage hostname and it should use the old style calling format, not the hostname based container format.

An example client using the python boto library might look like the following for a SAIO setup:

connection = boto.s3.Connection(
    aws_access_key_id='test:tester',
    aws_secret_access_key='testing',
    port=8080,
    host='127.0.0.1',
    is_secure=False,
    calling_format=boto.s3.connection.OrdinaryCallingFormat())

Please check the Wiki section for more information.