Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2011
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. [DEFAULT]
  2. # Enter these next two values if using SSL certifications
  3. cert_file = /etc/swift/cert.crt
  4. key_file = /etc/swift/cert.key
  5. bind_port = 8080
  6. workers = 8
  7. user = swift
  8.  
  9. [pipeline:main]
  10. # keep swauth in the line below if you plan to use swauth for authentication
  11. pipeline = healthcheck cache tmpauth proxy-server
  12. pipeline = healthcheck cache swauth proxy-server
  13.  
  14. [app:proxy-server]
  15. use = egg:swift#proxy
  16. allow_account_management = true
  17.  
  18. [filter:swauth]
  19. # the line below points to swauth as a separate project from swift
  20. use = egg:swauth#swauth
  21. # Highly recommended to change this.
  22. super_admin_key = XXXXX
  23.  
  24. [filter:healthcheck]
  25. use = egg:swift#healthcheck
  26.  
  27. [filter:cache]
  28. use = egg:swift#memcache
  29. memcache_servers = 1.2.3.4:11211
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement