Created
November 22, 2017 08:57
-
-
Save kunthar/4b66eb26cb6222db5f1d241f31af6bd6 to your computer and use it in GitHub Desktop.
gnocchi-api-paste.ini
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [composite:gnocchi+basic] | |
| use = egg:Paste#urlmap | |
| / = gnocchiversions_pipeline | |
| /v1 = gnocchiv1+noauth | |
| /healthcheck = healthcheck | |
| [composite:gnocchi+keystone] | |
| use = egg:Paste#urlmap | |
| / = gnocchiversions_pipeline | |
| /v1 = gnocchiv1+keystone | |
| /healthcheck = healthcheck | |
| [composite:gnocchi+remoteuser] | |
| use = egg:Paste#urlmap | |
| / = gnocchiversions_pipeline | |
| /v1 = gnocchiv1+noauth | |
| /healthcheck = healthcheck | |
| [pipeline:gnocchiv1+noauth] | |
| pipeline = http_proxy_to_wsgi gnocchiv1 | |
| [pipeline:gnocchiv1+keystone] | |
| pipeline = http_proxy_to_wsgi keystone_authtoken gnocchiv1 | |
| [pipeline:gnocchiversions_pipeline] | |
| pipeline = http_proxy_to_wsgi gnocchiversions | |
| [app:gnocchiversions] | |
| paste.app_factory = gnocchi.rest.app:app_factory | |
| root = gnocchi.rest.api.VersionsController | |
| [app:gnocchiv1] | |
| paste.app_factory = gnocchi.rest.app:app_factory | |
| root = gnocchi.rest.api.V1Controller | |
| [filter:keystone_authtoken] | |
| use = egg:keystonemiddleware#auth_token | |
| oslo_config_project = gnocchi | |
| [filter:http_proxy_to_wsgi] | |
| use = egg:oslo.middleware#http_proxy_to_wsgi | |
| oslo_config_project = gnocchi | |
| [app:healthcheck] | |
| use = egg:oslo.middleware#healthcheck | |
| oslo_config_project = gnocchi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment