Advertisement
Guest User

Untitled

a guest
Apr 19th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. [DEFAULT]
  2. bind_port = 8082
  3. workers = 20
  4. user = root
  5.  
  6. [pipeline:main]
  7. pipeline = healthcheck cache tokenauth swiftauth extension proxy-server
  8. #pipeline = healthcheck cache tokenauth proxy-server
  9.  
  10.  
  11. [app:proxy-server]
  12. use = egg:swift#proxy
  13. allow_account_management = true
  14. account_autocreate = true
  15.  
  16. [filter:swiftauth]
  17. paste.filter_factory = keystone.middleware.swift_auth:filter_factory
  18. operator_roles = client_user, cloud_admin, operation_admin, service_admin, super _admin
  19. admin_user = cloudena_agent
  20. admin_role = cloud_admin
  21. keystone_url = http://10.0.0.1:8081/v2.0
  22.  
  23. [filter:tokenauth]
  24. paste.filter_factory = keystone.middleware.auth_token:filter_factory
  25. auth_protocol = http
  26. auth_host = 10.0.0.1
  27. auth_port = 8081
  28. auth_uri = http://10.0.0.1:8081/
  29. admin_token = cloud123
  30. admin_user = cloudena_agent
  31. admin_password = 1qaz@wsx
  32. delay_auth_decision = 0
  33. memcache_servers = 127.0.0.1:11211
  34. token_cache_time = 6000
  35.  
  36. [filter:healthcheck]
  37. use = egg:swift#healthcheck
  38.  
  39. [filter:cache]
  40. use = egg:swift#memcache
  41. memcache_servers = 127.0.0.1:11211
  42.  
  43. [filter:extension]
  44. use = egg:swift#extension
  45. # Extension API will only allow this role to access
  46. role = cloud_admin
  47.  
  48.  
  49. [filter:staticweb]
  50. use = egg:swift#staticweb
  51.  
  52.  
  53. [filter:tempauth]
  54. use = egg:swift#tempauth
  55. user_admin_admin = admin .admin .reseller_admin
  56. user_test_tester = testing .admin
  57. user_test2_tester2 = testing2 .admin
  58. user_test_tester3 = testing3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement