Advertisement
weissa

proxy-server.conf

Feb 9th, 2012
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. [DEFAULT]
  2. bind_port = 8080
  3. user = swift
  4.  
  5. [pipeline:main]
  6. pipeline = catch_errors healthcheck cache tokenauth swiftauth proxy-server
  7.  
  8. [app:proxy-server]
  9. use = egg:swift#proxy
  10. account_autocreate = true
  11.  
  12. [filter:swiftauth]
  13. use = egg:keystone#swiftauth
  14. keystone_url = http://10.129.1.2:5000/v2.0
  15. keystone_admin_token = 11121314151617181920
  16. keystone_swift_operator_roles = Admin, SwiftOperator
  17. keystone_tenant_user_admin = true
  18.  
  19. [filter:tokenauth]
  20. paste.filter_factory = keystone.middleware.auth_token:filter_factory
  21. auth_protocol = http
  22. auth_host = 10.129.1.2
  23. auth_port = 35357
  24. auth_uri = http://10.129.1.2:5000/
  25. admin_token = 11121314151617181920
  26. delay_auth_decision = 0
  27. memecache_host = 127.0.0.1:11211
  28.  
  29. [filter:cache]
  30. use = egg:swift#memcache
  31. set log_name = cache
  32.  
  33. [filter:catch_errors]
  34. use = egg:swift#catch_errors
  35.  
  36. [filter:healthcheck]
  37. use = egg:swift#healthcheck
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement