
* Fix leaking password in murano-api logs (resolved: MRN-861) * Added function to clean deployment description * Updated SQLAlchemy requirement * Changed default values of vhost, login, password (resolved: MRN-880) * Updated requirements for murano-common Now murano-common is installed from pypi and has correct version requirements Change-Id: I765808820b0ccbdb1d24c776cbe674c00822a3e4
81 lines
2.4 KiB
Plaintext
81 lines
2.4 KiB
Plaintext
[DEFAULT]
|
|
# 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
|
|
|
|
# Log to this file. Make sure the user has permissions to write to this file!
|
|
log_file = /tmp/murano-api.log
|
|
|
|
[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
|
|
|
|
# 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 =
|
|
|
|
# RabbitMQ credentials. Fresh RabbitMQ installation has "guest" account with "guest" password
|
|
# It's assumed here that default credentials were changed in accordance with this config.
|
|
# You can use rabbitmqctl add_user ... command for that.
|
|
# It is recommended to change default credentials for Murano using RabbitMQ web console or command line utility.
|
|
login = muranouser
|
|
password = murano
|
|
|
|
# RabbitMQ virtual host (vhost). Fresh RabbitMQ installation has "/" vhost preconfigured.
|
|
# It's assumed here that default vhost was changed in accordance with this config.
|
|
# You can use rabbitmqctl add_vhost ... command for that.
|
|
virtual_host = muranovhost
|
|
|
|
[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
|