Advertisement
Guest User

glance-registry-paste.ini

a guest
Apr 16th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. # Default minimal pipeline
  2. [pipeline:glance-registry]
  3. pipeline = context registryapp
  4.  
  5. # Use the following pipeline for keystone auth
  6. # i.e. in glance-registry.conf:
  7. # [paste_deploy]
  8. # flavor = keystone
  9. #
  10. [pipeline:glance-registry-keystone]
  11. pipeline = authtoken context registryapp
  12.  
  13. [app:registryapp]
  14. paste.app_factory = glance.common.wsgi:app_factory
  15. glance.app_factory = glance.registry.api.v1:API
  16.  
  17. [filter:context]
  18. context_class = glance.registry.context.RequestContext
  19. paste.filter_factory = glance.common.wsgi:filter_factory
  20. glance.filter_factory = glance.common.context:ContextMiddleware
  21.  
  22. [filter:authtoken]
  23. paste.filter_factory = keystone.middleware.auth_token:filter_factory
  24. service_protocol = http
  25. service_host = 169.144.104.72
  26. service_port = 5000
  27. auth_host = 169.144.104.72
  28. auth_port = 35357
  29. auth_protocol = http
  30. auth_uri = http://169.144.104.72:5000/
  31. admin_tenant_name = admin
  32. admin_user = admin
  33. admin_password = administrator
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement