8372f48b7a
Change-Id: Ibd4c9811daa6e9e692457ce480a58c964fef7cb9 Signed-off-by: Julien Danjou <julien@danjou.info>
19 lines
579 B
INI
19 lines
579 B
INI
# aodh API WSGI Pipeline
|
|
# Define the filters that make up the pipeline for processing WSGI requests
|
|
# Note: This pipeline is PasteDeploy's term rather than aodh's pipeline
|
|
# used for processing samples
|
|
|
|
# Remove authtoken from the pipeline if you don't want to use keystone authentication
|
|
[pipeline:main]
|
|
pipeline = request_id authtoken api-server
|
|
|
|
[app:api-server]
|
|
paste.app_factory = aodh.api.app:app_factory
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystonemiddleware.auth_token:filter_factory
|
|
|
|
[filter:request_id]
|
|
paste.filter_factory = oslo_middleware:RequestId.factory
|
|
|