Guest User

Untitled

a guest
May 7th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 KB | None | 0 0
  1. [DEFAULT]
  2. notification_driver=messagingv2
  3.  
  4. # Show more verbose log output (sets INFO log level output)
  5. verbose = True
  6.  
  7. # Show debugging output in logs (sets DEBUG log level output)
  8. debug = True
  9.  
  10. # Address to bind the server to
  11. bind_host = 0.0.0.0
  12.  
  13. # Port the bind the server to
  14. bind_port = 8082
  15.  
  16. # Set up logging. Make sure the user has permissions to write to this file! To use syslog just set use_syslog parameter value to 'True'.
  17. log_file = /tmp/murano-api.log
  18.  
  19. # Use syslog for logging. Existing syslog format is DEPRECATED
  20. # during I, and then will be changed in J to honor RFC5424
  21.  
  22. use_syslog = False
  23.  
  24. # (Optional) Use syslog rfc5424 format for logging. If
  25. # enabled, will add APP-NAME (RFC5424) before the MSG part of
  26. # the syslog message. The old format without APP-NAME is
  27. # deprecated in I, and will be removed in J.
  28. #use_syslog_rfc_format=false
  29.  
  30. #Syslog facility to receive log lines
  31. syslog_log_facility = LOG_LOCAL0
  32.  
  33. # Use durable queues in amqp. (boolean value)
  34. # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
  35. #amqp_durable_queues=false
  36.  
  37. # Auto-delete queues in amqp. (boolean value)
  38. #amqp_auto_delete=false
  39.  
  40.  
  41. # SSL version to use (valid only if SSL enabled). valid values
  42. # are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some
  43. # distributions (string value)
  44. #kombu_ssl_version=
  45.  
  46. # SSL key file (valid only if SSL enabled) (string value)
  47. #kombu_ssl_keyfile=
  48.  
  49. # SSL cert file (valid only if SSL enabled) (string value)
  50. #kombu_ssl_certfile=
  51.  
  52. # SSL certification authority file (valid only if SSL enabled)
  53. # (string value)
  54. #kombu_ssl_ca_certs=
  55.  
  56. # The RabbitMQ broker address where a single node is used
  57. # (string value)
  58. rabbit_host=172.18.11.4
  59.  
  60. # The RabbitMQ broker port where a single node is used
  61. # (integer value)
  62. #rabbit_port=5672
  63.  
  64. # RabbitMQ HA cluster host:port pairs (list value)
  65. #rabbit_hosts=$rabbit_host:$rabbit_port
  66.  
  67. # connect over SSL for RabbitMQ (boolean value)
  68. #rabbit_use_ssl=false
  69.  
  70. # the RabbitMQ userid (string value)
  71. #rabbit_userid=guest
  72.  
  73. # the RabbitMQ password (string value)
  74. #rabbit_password=guest
  75.  
  76. # the RabbitMQ virtual host (string value)
  77. rabbit_virtual_host=smelikyan
  78.  
  79. # how frequently to retry connecting with RabbitMQ (integer
  80. # value)
  81. #rabbit_retry_interval=1
  82.  
  83. # how long to backoff for between retries when connecting to
  84. # RabbitMQ (integer value)
  85. #rabbit_retry_backoff=2
  86.  
  87. # maximum retries with trying to connect to RabbitMQ (the
  88. # default of 0 implies an infinite retry count) (integer
  89. # value)
  90. #rabbit_max_retries=0
  91.  
  92. # use H/A queues in RabbitMQ (x-ha-policy: all).You need to
  93. # wipe RabbitMQ database when changing this option. (boolean
  94. # value)
  95. #rabbit_ha_queues=false
  96.  
  97. [database]
  98. #A valid SQLAlchemy connection string for the metadata database
  99. #connection = mysql://root:password@localhost:3306/murano
  100. connection = sqlite:///murano.sqlite
  101.  
  102. [ssl]
  103. #Parameters to configure SSL for trusted HTTPS connection
  104.  
  105. # Certificate file to use when starting API server securely
  106. #cert_file = /path/to/certfile
  107.  
  108. # Private key file to use when starting API server securely
  109. #key_file = /path/to/keyfile
  110.  
  111. # CA certificate file to use to verify connecting clients
  112. #ca_file = /path/to/cafile
  113.  
  114. #For more information see Auth-Token Middleware with Username and Password
  115. #http://docs.openstack.org/developer/keystone/configuringservices.html
  116. [keystone_authtoken]
  117. auth_host = 172.0.0.0
  118. auth_port = 5000
  119. auth_protocol = http
  120. admin_tenant_name = admin
  121. admin_user = admin
  122. admin_password = admin
  123. signing_dir = /tmp/keystone-signing-muranoapi
  124.  
  125. #This section controls statistics collection
  126. [stats]
  127. #Stats collection period in minutes
  128. period = 5
  129.  
  130. [keystone]
  131. # URL of OpenStack KeyStone service REST API.
  132. # Typically only hostname (or IP) needs to be changed
  133. auth_url = http://172.0.0.0:5000/v2.0
  134.  
  135. # Keystone SSL parameters
  136. # Optional CA cert file to use in SSL connections
  137. #ca_file =
  138. # Optional PEM-formatted certificate chain file
  139. #cert_file =
  140. # Optional PEM-formatted file that contains the private key
  141. #key_file =
  142. # If set then the server's certificate will not be verified
  143. insecure = False
  144.  
  145. [murano]
  146. url=http://localhost:8082
  147.  
  148.  
  149.  
  150. [rabbitmq]
  151. host = 172.0.0.0
  152. port = 5672
  153. login = guest
  154. password = guest
  155. virtual_host = /
  156. ssl = False
Advertisement
Add Comment
Please, Sign In to add comment