~hudson-openstack/nova/trunk

« back to all changes in this revision

Viewing changes to etc/nova/api-paste.ini

Remove keystone middlewares.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
pipeline = logrequest ec2noauth cloudrequest authorizer ec2executor
23
23
# NOTE(vish): use the following pipeline for deprecated auth
24
24
#pipeline = logrequest authenticate cloudrequest authorizer ec2executor
25
 
# NOTE(vish): use the following pipeline for keystone
26
 
# pipeline = logrequest totoken authtoken keystonecontext cloudrequest authorizer ec2executor
27
25
 
28
26
[pipeline:ec2admin]
29
27
pipeline = logrequest ec2noauth adminrequest authorizer ec2executor
30
28
# NOTE(vish): use the following pipeline for deprecated auth
31
29
#pipeline = logrequest authenticate adminrequest authorizer ec2executor
32
 
# NOTE(vish): use the following pipeline for keystone
33
 
#pipeline = logrequest totoken authtoken keystonecontext adminrequest authorizer ec2executor
34
30
 
35
31
[pipeline:ec2metadata]
36
32
pipeline = logrequest ec2md
44
40
[filter:ec2lockout]
45
41
paste.filter_factory = nova.api.ec2:Lockout.factory
46
42
 
47
 
[filter:totoken]
48
 
paste.filter_factory = nova.api.ec2:ToToken.factory
49
 
 
50
43
[filter:ec2noauth]
51
44
paste.filter_factory = nova.api.ec2:NoAuth.factory
52
45
 
87
80
pipeline = faultwrap noauth ratelimit osapiapp10
88
81
# NOTE(vish): use the following pipeline for deprecated auth
89
82
# pipeline = faultwrap auth ratelimit osapiapp10
90
 
# NOTE(vish): use the following pipeline for keystone
91
 
#pipeline = faultwrap authtoken keystonecontext ratelimit osapiapp10
92
83
 
93
84
[pipeline:openstackapi11]
94
85
pipeline = faultwrap noauth ratelimit extensions osapiapp11
95
86
# NOTE(vish): use the following pipeline for deprecated auth
96
87
# pipeline = faultwrap auth ratelimit extensions osapiapp11
97
 
# NOTE(vish): use the following pipeline for keystone
98
 
# pipeline = faultwrap authtoken keystonecontext ratelimit extensions osapiapp11
99
88
 
100
89
[filter:faultwrap]
101
90
paste.filter_factory = nova.api.openstack:FaultWrapper.factory
123
112
 
124
113
[app:osversionapp]
125
114
paste.app_factory = nova.api.openstack.versions:Versions.factory
126
 
 
127
 
##########
128
 
# Shared #
129
 
##########
130
 
 
131
 
[filter:keystonecontext]
132
 
paste.filter_factory = nova.api.auth:KeystoneContext.factory
133
 
 
134
 
[filter:authtoken]
135
 
paste.filter_factory = keystone.middleware.auth_token:filter_factory
136
 
service_protocol = http
137
 
service_host = 127.0.0.1
138
 
service_port = 808
139
 
auth_host = 127.0.0.1
140
 
auth_port = 5001
141
 
auth_protocol = http
142
 
auth_uri = http://127.0.0.1:5000/
143
 
admin_token = 999888777666
144