You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
868 B
28 lines
868 B
[pipeline:main] |
|
pipeline = cors healthcheck http_proxy_to_wsgi request_id osprofiler authtoken api_v1 |
|
|
|
[app:api_v1] |
|
paste.app_factory = magnum.api.app:app_factory |
|
|
|
[filter:authtoken] |
|
acl_public_routes = /, /v1 |
|
paste.filter_factory = magnum.api.middleware.auth_token:AuthTokenMiddleware.factory |
|
|
|
[filter:osprofiler] |
|
paste.filter_factory = magnum.common.profiler:WsgiMiddleware.factory |
|
|
|
[filter:request_id] |
|
paste.filter_factory = oslo_middleware:RequestId.factory |
|
|
|
[filter:cors] |
|
paste.filter_factory = oslo_middleware.cors:filter_factory |
|
oslo_config_project = magnum |
|
|
|
[filter:healthcheck] |
|
paste.filter_factory = oslo_middleware:Healthcheck.factory |
|
backends = disable_by_file |
|
disable_by_file_path = /etc/magnum/healthcheck_disable |
|
|
|
[filter:http_proxy_to_wsgi] |
|
paste.filter_factory = oslo_middleware.http_proxy_to_wsgi:HTTPProxyToWSGI.factory |
|
oslo_config_project = magnum
|
|
|