Jay Pipes | 8cafc80 | 2012-01-16 22:01:06 -0500 | [diff] [blame] | 1 | [pipeline:glance-registry] |
| 2 | #pipeline = context registryapp |
| 3 | # NOTE: use the following pipeline for keystone |
Brian Waldon | 6aef757 | 2012-03-19 07:54:16 -0700 | [diff] [blame] | 4 | pipeline = authtoken context registryapp |
Jay Pipes | 8cafc80 | 2012-01-16 22:01:06 -0500 | [diff] [blame] | 5 | |
| 6 | [app:registryapp] |
| 7 | paste.app_factory = glance.common.wsgi:app_factory |
| 8 | glance.app_factory = glance.registry.api.v1:API |
| 9 | |
| 10 | [filter:context] |
| 11 | context_class = glance.registry.context.RequestContext |
| 12 | paste.filter_factory = glance.common.wsgi:filter_factory |
| 13 | glance.filter_factory = glance.common.context:ContextMiddleware |
| 14 | |
| 15 | [filter:authtoken] |
| 16 | paste.filter_factory = keystone.middleware.auth_token:filter_factory |
Jay Pipes | 8cafc80 | 2012-01-16 22:01:06 -0500 | [diff] [blame] | 17 | auth_host = %KEYSTONE_AUTH_HOST% |
| 18 | auth_port = %KEYSTONE_AUTH_PORT% |
| 19 | auth_protocol = %KEYSTONE_AUTH_PROTOCOL% |
| 20 | auth_uri = %KEYSTONE_SERVICE_PROTOCOL%://%KEYSTONE_SERVICE_HOST%:%KEYSTONE_SERVICE_PORT%/ |
Dean Troyer | b328838 | 2012-02-28 16:41:10 -0600 | [diff] [blame] | 21 | admin_tenant_name = %SERVICE_TENANT_NAME% |
| 22 | admin_user = %SERVICE_USERNAME% |
| 23 | admin_password = %SERVICE_PASSWORD% |