859bf95820
keystone auth_token middleware now allows quantum to have auth_token configuration in quantum.conf. This commit moves the example of auth_token configuration from api-paste.ini to quantum.conf. This simplifies user configuations and users is no longer required to edit api-paste.ini. This change does not break backward compatibility. auth_token first tries the configurations in /etc/quantum/api-paste.ini and then the above configurations. Thus a user who already use api-paste.ini does not need to change it. DocImpact Change-Id: I5a4c48b14428e29ea2a331880e1de0afd69c97b5
25 lines
725 B
INI
25 lines
725 B
INI
[composite:quantum]
|
|
use = egg:Paste#urlmap
|
|
/: quantumversions
|
|
/v2.0: quantumapi_v2_0
|
|
|
|
[composite:quantumapi_v2_0]
|
|
use = call:quantum.auth:pipeline_factory
|
|
noauth = extensions quantumapiapp_v2_0
|
|
keystone = authtoken keystonecontext extensions quantumapiapp_v2_0
|
|
|
|
[filter:keystonecontext]
|
|
paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
|
|
|
|
[filter:extensions]
|
|
paste.filter_factory = quantum.api.extensions:plugin_aware_extension_middleware_factory
|
|
|
|
[app:quantumversions]
|
|
paste.app_factory = quantum.api.versions:Versions.factory
|
|
|
|
[app:quantumapiapp_v2_0]
|
|
paste.app_factory = quantum.api.v2.router:APIRouter.factory
|