# Conductor API WSGI Pipeline # Define the filters that make up the pipeline for processing WSGI requests # Note: This pipeline is PasteDeploy's term rather than Conductor's pipeline # used for processing samples # Remove authtoken from the pipeline if you don't want to use keystone authentication [pipeline:main] pipeline = cors http_proxy_to_wsgi api-server #pipeline = cors http_proxy_to_wsgi request_id authtoken api-server [app:api-server] paste.app_factory = conductor.api.app:app_factory #[filter:authtoken] #paste.filter_factory = keystonemiddleware.auth_token:filter_factory #[filter:request_id] #paste.filter_factory = oslo_middleware:RequestId.factory [filter:cors] paste.filter_factory = oslo_middleware.cors:filter_factory oslo_config_project = conductor [filter:http_proxy_to_wsgi] paste.filter_factory = oslo_middleware.http_proxy_to_wsgi:HTTPProxyToWSGI.factory oslo_config_project = conductor