diff options
| author | Ziad Sawalha <github@highbridgellc.com> | 2011-05-28 13:08:25 -0500 |
|---|---|---|
| committer | Ziad Sawalha <github@highbridgellc.com> | 2011-05-28 13:08:25 -0500 |
| commit | efa3db4b35113893836e3e3d0f95c0d8be0adf92 (patch) | |
| tree | a5216229404e72c453767d1f67dd801941cb5cc8 /docs/nova-api-paste.ini | |
| parent | 87c9cf8a06226c017f3e3edaff3a972117bdc64e (diff) | |
| download | keystone-efa3db4b35113893836e3e3d0f95c0d8be0adf92.tar.gz keystone-efa3db4b35113893836e3e3d0f95c0d8be0adf92.tar.xz keystone-efa3db4b35113893836e3e3d0f95c0d8be0adf92.zip | |
Merged DTest tests and moved ini file to examples/paste
Diffstat (limited to 'docs/nova-api-paste.ini')
| -rw-r--r-- | docs/nova-api-paste.ini | 114 |
1 files changed, 0 insertions, 114 deletions
diff --git a/docs/nova-api-paste.ini b/docs/nova-api-paste.ini deleted file mode 100644 index b4a94557..00000000 --- a/docs/nova-api-paste.ini +++ /dev/null @@ -1,114 +0,0 @@ -####### -# EC2 # -####### - -[composite:ec2] -use = egg:Paste#urlmap -/: ec2versions -/services/Cloud: ec2cloud -/services/Admin: ec2admin -/latest: ec2metadata -/2007-01-19: ec2metadata -/2007-03-01: ec2metadata -/2007-08-29: ec2metadata -/2007-10-10: ec2metadata -/2007-12-15: ec2metadata -/2008-02-01: ec2metadata -/2008-09-01: ec2metadata -/2009-04-04: ec2metadata -/1.0: ec2metadata - -[pipeline:ec2cloud] -pipeline = logrequest authenticate cloudrequest authorizer ec2executor -#pipeline = logrequest ec2lockout authenticate cloudrequest authorizer ec2executor - -[pipeline:ec2admin] -pipeline = logrequest authenticate adminrequest authorizer ec2executor - -[pipeline:ec2metadata] -pipeline = logrequest ec2md - -[pipeline:ec2versions] -pipeline = logrequest ec2ver - -[filter:logrequest] -paste.filter_factory = nova.api.ec2:RequestLogging.factory - -[filter:ec2lockout] -paste.filter_factory = nova.api.ec2:Lockout.factory - -[filter:authenticate] -paste.filter_factory = nova.api.ec2:Authenticate.factory - -[filter:cloudrequest] -controller = nova.api.ec2.cloud.CloudController -paste.filter_factory = nova.api.ec2:Requestify.factory - -[filter:adminrequest] -controller = nova.api.ec2.admin.AdminController -paste.filter_factory = nova.api.ec2:Requestify.factory - -[filter:authorizer] -paste.filter_factory = nova.api.ec2:Authorizer.factory - -[app:ec2executor] -paste.app_factory = nova.api.ec2:Executor.factory - -[app:ec2ver] -paste.app_factory = nova.api.ec2:Versions.factory - -[app:ec2md] -paste.app_factory = nova.api.ec2.metadatarequesthandler:MetadataRequestHandler.factory - -############# -# Openstack # -############# - -[composite:osapi] -use = egg:Paste#urlmap -/: osversions -/v1.0: openstackapi10 -/v1.1: openstackapi11 - -[pipeline:openstackapi10] -pipeline = faultwrap tokenauth auth_shim ratelimit osapiapp10 - -[pipeline:openstackapi11] -pipeline = faultwrap tokenauth auth_shim ratelimit extensions osapiapp11 - -[filter:faultwrap] -paste.filter_factory = nova.api.openstack:FaultWrapper.factory - -[filter:auth] -paste.filter_factory = nova.api.openstack.auth:AuthMiddleware.factory - -[filter:tokenauth] -paste.filter_factory = keystone.auth_protocols.auth_token:filter_factory -service_protocol = http -service_host = 127.0.0.1 -service_port = 808 -auth_host = 127.0.0.1 -auth_port = 8081 -auth_protocol = http -admin_token = 999888777666 - -[filter:auth_shim] -paste.filter_factory = keystone.auth_protocols.nova_auth_token:KeystoneAuthShim.factory - -[filter:ratelimit] -paste.filter_factory = nova.api.openstack.limits:RateLimitingMiddleware.factory - -[filter:extensions] -paste.filter_factory = nova.api.openstack.extensions:ExtensionMiddleware.factory - -[app:osapiapp10] -paste.app_factory = nova.api.openstack:APIRouterV10.factory - -[app:osapiapp11] -paste.app_factory = nova.api.openstack:APIRouterV11.factory - -[pipeline:osversions] -pipeline = faultwrap osversionapp - -[app:osversionapp] -paste.app_factory = nova.api.openstack.versions:Versions.factory |
