Advertisement
Guest User

Untitled

a guest
Dec 7th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 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. user = swift
  6. log_facility = LOG_LOCAL1
  7. log_level = DEBUG
  8.  
  9. [pipeline:main]
  10. #pipeline = healthcheck cache swift3 authtoken keystone proxy-server
  11. pipeline = healthcheck cache swift3 s3token authtoken keystone proxy-logging proxy-server
  12.  
  13. [filter:proxy-logging]
  14. use = egg:swift#proxy_logging
  15.  
  16. [app:proxy-server]
  17. use = egg:swift#proxy
  18. allow_account_management = true
  19. account_autocreate = true
  20. log_level = DEBUG
  21.  
  22. [filter:swift3]
  23. use = egg:swift3#swift3
  24.  
  25. [filter:keystone]
  26. paste.filter_factory = keystone.middleware.swift_auth:filter_factory
  27. operator_roles = Member,admin,swiftoperator,KeystoneAdmin
  28.  
  29. [filter:s3token]
  30. paste.filter_factory = keystone.middleware.s3_token:filter_factory
  31. auth_port = 35357
  32. auth_host = 127.0.0.1
  33. auth_protocol = http
  34.  
  35. [filter:tempauth]
  36. use = egg:swift#tempauth
  37. user_system_root = testpass .admin http://192.168.0.22:8080/v1/AUTH_system
  38.  
  39.  
  40. [filter:authtoken]
  41. paste.filter_factory = keystone.middleware.auth_token:filter_factory
  42. ## Delaying the auth decision is required to support token-less
  43. ## usage for anonymous referrers ('.r:*').
  44. signing_dir=/etc/swift
  45. delay_auth_decision = 10
  46. service_port = 5000
  47. service_host = 192.168.0.17
  48. auth_port = 35357
  49. auth_host = 192.168.0.17
  50. auth_protocol = http
  51. auth_uri = http://192.168.0.17:5000/v2.0/
  52. #auth_token = xxxxxxx
  53. #admin_token = xxxxxxxxx
  54. admin_tenant_name = service
  55. admin_user = swift
  56. admin_password = xxxxxxxx
  57. log_level = DEBUG
  58. log_facility = LOG_LOCAL1
  59.  
  60. [filter:cache]
  61. use = egg:swift#memcache
  62. set log_name = cache
  63. memcache_servers = 192.168.0.22:11211
  64.  
  65. [filter:catch_errors]
  66. use = egg:swift#catch_errors
  67.  
  68. [filter:healthcheck]
  69. use = egg:swift#healthcheck
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement