Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [DEFAULT]
- notification_driver=messagingv2
- # Show more verbose log output (sets INFO log level output)
- verbose = True
- # Show debugging output in logs (sets DEBUG log level output)
- debug = True
- # Address to bind the server to
- bind_host = 0.0.0.0
- # Port the bind the server to
- bind_port = 8082
- # 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'.
- log_file = /tmp/murano-api.log
- # Use syslog for logging. Existing syslog format is DEPRECATED
- # during I, and then will be changed in J to honor RFC5424
- use_syslog = False
- # (Optional) Use syslog rfc5424 format for logging. If
- # enabled, will add APP-NAME (RFC5424) before the MSG part of
- # the syslog message. The old format without APP-NAME is
- # deprecated in I, and will be removed in J.
- #use_syslog_rfc_format=false
- #Syslog facility to receive log lines
- syslog_log_facility = LOG_LOCAL0
- # Use durable queues in amqp. (boolean value)
- # Deprecated group/name - [DEFAULT]/rabbit_durable_queues
- #amqp_durable_queues=false
- # Auto-delete queues in amqp. (boolean value)
- #amqp_auto_delete=false
- # SSL version to use (valid only if SSL enabled). valid values
- # are TLSv1, SSLv23 and SSLv3. SSLv2 may be available on some
- # distributions (string value)
- #kombu_ssl_version=
- # SSL key file (valid only if SSL enabled) (string value)
- #kombu_ssl_keyfile=
- # SSL cert file (valid only if SSL enabled) (string value)
- #kombu_ssl_certfile=
- # SSL certification authority file (valid only if SSL enabled)
- # (string value)
- #kombu_ssl_ca_certs=
- # The RabbitMQ broker address where a single node is used
- # (string value)
- rabbit_host=172.18.11.4
- # The RabbitMQ broker port where a single node is used
- # (integer value)
- #rabbit_port=5672
- # RabbitMQ HA cluster host:port pairs (list value)
- #rabbit_hosts=$rabbit_host:$rabbit_port
- # connect over SSL for RabbitMQ (boolean value)
- #rabbit_use_ssl=false
- # the RabbitMQ userid (string value)
- #rabbit_userid=guest
- # the RabbitMQ password (string value)
- #rabbit_password=guest
- # the RabbitMQ virtual host (string value)
- rabbit_virtual_host=smelikyan
- # how frequently to retry connecting with RabbitMQ (integer
- # value)
- #rabbit_retry_interval=1
- # how long to backoff for between retries when connecting to
- # RabbitMQ (integer value)
- #rabbit_retry_backoff=2
- # maximum retries with trying to connect to RabbitMQ (the
- # default of 0 implies an infinite retry count) (integer
- # value)
- #rabbit_max_retries=0
- # use H/A queues in RabbitMQ (x-ha-policy: all).You need to
- # wipe RabbitMQ database when changing this option. (boolean
- # value)
- #rabbit_ha_queues=false
- [database]
- #A valid SQLAlchemy connection string for the metadata database
- #connection = mysql://root:password@localhost:3306/murano
- connection = sqlite:///murano.sqlite
- [ssl]
- #Parameters to configure SSL for trusted HTTPS connection
- # Certificate file to use when starting API server securely
- #cert_file = /path/to/certfile
- # Private key file to use when starting API server securely
- #key_file = /path/to/keyfile
- # CA certificate file to use to verify connecting clients
- #ca_file = /path/to/cafile
- #For more information see Auth-Token Middleware with Username and Password
- #http://docs.openstack.org/developer/keystone/configuringservices.html
- [keystone_authtoken]
- auth_host = 172.0.0.0
- auth_port = 5000
- auth_protocol = http
- admin_tenant_name = admin
- admin_user = admin
- admin_password = admin
- signing_dir = /tmp/keystone-signing-muranoapi
- #This section controls statistics collection
- [stats]
- #Stats collection period in minutes
- period = 5
- [keystone]
- # URL of OpenStack KeyStone service REST API.
- # Typically only hostname (or IP) needs to be changed
- auth_url = http://172.0.0.0:5000/v2.0
- # Keystone SSL parameters
- # Optional CA cert file to use in SSL connections
- #ca_file =
- # Optional PEM-formatted certificate chain file
- #cert_file =
- # Optional PEM-formatted file that contains the private key
- #key_file =
- # If set then the server's certificate will not be verified
- insecure = False
- [murano]
- url=http://localhost:8082
- [rabbitmq]
- host = 172.0.0.0
- port = 5672
- login = guest
- password = guest
- virtual_host = /
- ssl = False
Advertisement
Add Comment
Please, Sign In to add comment