Guest User

Untitled

a guest
Apr 22nd, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.58 KB | None | 0 0
  1. [DEFAULT]
  2. bind_port = 8080
  3. user = swift
  4. log_facility = LOG_LOCAL1
  5.  
  6. [pipeline:main]
  7. pipeline = catch_errors cache keystone proxy-server
  8.  
  9. [app:proxy-server]
  10. use = egg:swift#proxy
  11. account_autocreate = true
  12.  
  13. [filter:keystone]
  14. use = egg:keystone#tokenauth
  15. auth_protocol = http
  16. auth_host = 127.0.0.1
  17. auth_port = 35357
  18. admin_token = abcdef123
  19. delay_auth_decision = 0
  20. service_protocol = http
  21. service_host = 127.0.0.1
  22. service_port = 5000
  23. service_pass = 1337h4x
  24.  
  25. [filter:cache]
  26. use = egg:swift#memcache
  27. set log_name = cache
  28.  
  29. [filter:catch_errors]
  30. use = egg:swift#catch_errors
Add Comment
Please, Sign In to add comment