Advertisement
Guest User

swill

a guest
Nov 14th, 2011
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. [DEFAULT]
  2. bind_port = 8080
  3. user = swill
  4. workers = 8
  5.  
  6. [pipeline:main]
  7. pipeline = healthcheck cache keystone proxy-server
  8.  
  9. [app:proxy-server]
  10. use = egg:swift#proxy
  11. allow_account_management = true
  12. account_autocreate = true
  13.  
  14. [filter:keystone]
  15. use = egg:keystone#tokenauth
  16. auth_protocol = http
  17. auth_host = 127.0.0.1
  18. auth_port = 5001
  19. admin_token = 999888777666
  20. delay_auth_decision = 0
  21. service_protocol = http
  22. service_host = 127.0.0.1
  23. service_port = 5000
  24. service_pass = dTpw
  25.  
  26. [filter:healthcheck]
  27. use = egg:swift#healthcheck
  28.  
  29. [filter:cache]
  30. use = egg:swift#memcache
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement