Advertisement
c0by

glance-registry-paste.ini

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