Advertisement
Guest User

Untitled

a guest
May 16th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. [DEFAULT]
  2. notification_driver = messaging
  3. rpc_backend = rabbit
  4. rabbit_host = controller
  5. rabbit_password = xxx
  6. default_store = file
  7. bind_host = 0.0.0.0
  8. bind_port = 9292
  9. log_file = /var/log/glance/api.log
  10. backlog = 4096
  11. workers = 1
  12. registry_host = 0.0.0.0
  13. registry_port = 9191
  14. registry_client_protocol = http
  15. rabbit_host = localhost
  16. rabbit_port = 5672
  17. rabbit_use_ssl = false
  18. rabbit_userid = guest
  19. rabbit_password = guest
  20. rabbit_virtual_host = /
  21. rabbit_notification_exchange = glance
  22. rabbit_notification_topic = notifications
  23. rabbit_durable_queues = False
  24. qpid_notification_exchange = glance
  25. qpid_notification_topic = notifications
  26. qpid_hostname = localhost
  27. qpid_port = 5672
  28. qpid_username =
  29. qpid_password =
  30. qpid_sasl_mechanisms =
  31. qpid_reconnect_timeout = 0
  32. qpid_reconnect_limit = 0
  33. qpid_reconnect_interval_min = 0
  34. qpid_reconnect_interval_max = 0
  35. qpid_reconnect_interval = 0
  36. qpid_heartbeat = 5
  37. qpid_protocol = tcp
  38. qpid_tcp_nodelay = True
  39. filesystem_store_datadir = /var/lib/glance/images/
  40. swift_store_auth_version = 2
  41. swift_store_auth_address = 127.0.0.1:5000/v2.0/
  42. swift_store_user = jdoe:jdoe
  43. swift_store_key = a86850deb2742ec3cb41518e26aa2d89
  44. swift_store_container = glance
  45. swift_store_create_container_on_put = False
  46. swift_store_large_object_size = 5120
  47. swift_store_large_object_chunk_size = 200
  48. swift_enable_snet = False
  49. s3_store_host = 127.0.0.1:8080/v1.0/
  50. s3_store_access_key = <20-char AWS access key>
  51. s3_store_secret_key = <40-char AWS secret key>
  52. s3_store_bucket = <lowercased 20-char aws access key>glance
  53. s3_store_create_bucket_on_put = False
  54. sheepdog_store_address = localhost
  55. sheepdog_store_port = 7000
  56. sheepdog_store_chunk_size = 64
  57. delayed_delete = False
  58. scrub_time = 43200
  59. scrubber_datadir = /var/lib/glance/scrubber
  60. image_cache_dir = /var/lib/glance/image-cache/
  61.  
  62. [database]
  63. connection = mysql://glance:xx@controller/glance
  64. backend = sqlalchemy
  65.  
  66. [paste_deploy]
  67. flavor = keystone
  68.  
  69. [store_type_location_strategy]
  70.  
  71. [keystone_authtoken]
  72. auth_uri = http://controller:5000
  73. auth_host = controller
  74. auth_port = 35357
  75. auth_protocol = http
  76. admin_tenant_name = service
  77. admin_user = glance
  78. admin_password = xx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement