[DEFAULT] # Show more verbose log output (sets INFO log level output) verbose = False # Show debugging output in logs (sets DEBUG log level output) debug = False # 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 = /var/log/murano/murano-api.log use_syslog=False syslog-log-facility=LOG_LOCAL0 [database] #A valid SQLAlchemy connection string for the metadata database #connection = mysql://root:password@localhost:3306/murano connection = sqlite:///murano.sqlite #A boolean that determines if the database will be automatically created auto_create = True [reports] #Change this params only when you know what you are doing results_exchange = task-results results_queue = task-results reports_exchange = task-reports reports_queue = task-reports [rabbitmq] # Connection parameters to RabbitMQ service # Hostname or IP address where RabbitMQ is located. host = localhost # RabbitMQ port (5672 is a default) port = 5672 # RabbitMQ credentials. Fresh RabbitMQ installation has "guest" account with "guest" password. # It is recommended to create dedicated user account for Murano using RabbitMQ web console or command line utility login = guest password = guest # RabbitMQ virtual host (vhost). Fresh RabbitMQ installation has "/" vhost preconfigured. # It is recommended to create dedicated vhost for Murano using RabbitMQ web console or command line utility virtual_host = / # Use SSL for RabbitMQ connections (True or False) ssl = False # Path to SSL CA certificate or empty to allow self signed server certificate #ca_certs = [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 = 127.0.0.1 auth_port = 35357 auth_protocol = http admin_tenant_name = admin admin_user = admin admin_password = swordfish signing_dir = /tmp/keystone-signing-muranoapi