Advertisement
genius1611

proxy-server.conf

Oct 22nd, 2011
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. [DEFAULT]
  2. cert_file = /etc/swift/cert.crt
  3. key_file = /etc/swift/cert.key
  4. bind_port = 8080
  5. workers = 8
  6. user = swift
  7.  
  8. [pipeline:main]
  9. pipeline = healthcheck cache keystone proxy-server
  10.  
  11. [app:proxy-server]
  12. use = egg:swift#proxy
  13. allow_account_management = true
  14.  
  15. [filter:keystone]
  16. use = egg:keystone#tokenauth
  17. auth_protocol = http
  18. auth_host = 127.0.0.1
  19. auth_port = 35357
  20. admin_token = 999888777666
  21. delay_auth_decision = 0
  22. service_protocol = http
  23. service_host = 127.0.0.1
  24. service_port = 8100
  25. service_pass = dTpw
  26.  
  27. [filter:healthcheck]
  28. use = egg:swift#healthcheck
  29.  
  30. [filter:cache]
  31. use = egg:swift#memcache
  32. memcache_servers = 10.2.48.90:11211
  33.  
  34.  
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement