Swift3 Middleware for OpenStack Swift, allowing access to OpenStack swift via the Amazon S3 API.
Go to file
FUJITA Tomonori 9a2ce5e472 Merge pull request #58 from vills/fix_quoting
fix requests without object_name
2013-11-19 11:12:24 -08:00
doc/source Update doc/source/index.rst 2012-10-09 08:00:35 -07:00
swift3 fix requests without object_name 2013-11-19 15:31:25 +02:00
.gitignore BucketController.PUT don't return error response if CONTENT_LENGTH is invalid 2012-10-28 17:27:15 +04:00
.unittests Add unittests from swift repository. 2012-05-21 13:21:24 +02:00
AUTHORS WIP - acls and test cases 2012-10-15 14:59:43 -07:00
CHANGELOG Addding a few base files to the project. 2012-05-21 13:05:34 +02:00
LICENSE Addding a few base files to the project. 2012-05-21 13:05:34 +02:00
README.md Update README about keystone usage 2013-02-08 08:34:35 +09:00
setup.py Fix setup.py 2012-06-16 20:51:47 +09:00

README.md

Swift3

Swift3 Middleware for OpenStack Swift, allowing access to OpenStack swift via the Amazon S3 API.

Install

  1. Install Swift3 with sudo python setup.py install or sudo python setup.py develop or via whatever packaging system you may be using.

  2. Alter your proxy-server.conf pipeline to have swift3:

If you use tempauth:

Was::

    [pipeline:main]
    pipeline = catch_errors cache tempauth proxy-server

Change To::

    [pipeline:main]
    pipeline = catch_errors cache swift3 tempauth proxy-server

If you use keystone:

Was::

    [pipeline:main]
    pipeline = catch_errors cache authtoken keystone proxy-server

Change To::

    [pipeline:main]
    pipeline = catch_errors cache swift3 s3token authtoken keystone proxy-server
  1. Add to your proxy-server.conf the section for the Swift3 WSGI filter::

    [filter:swift3] use = egg:swift3#swift3

You also need to add the following if you use keystone (adjust port, host, protocol configurations for your environment):

[filter:s3token]
paste.filter_factory = keystone.middleware.s3_token:filter_factory
auth_port = 35357
auth_host = 127.0.0.1
auth_protocol = http