Merge "Resolved issues with configuration file" into release-0.1

This commit is contained in:
Jenkins 2013-06-14 10:43:36 +00:00 committed by Gerrit Code Review
commit 5b22649a63
2 changed files with 18 additions and 5 deletions

View File

@ -7,6 +7,8 @@ paste.app_factory = muranoapi.api.v1.router:API.factory
[filter:context]
paste.filter_factory = muranoapi.api.middleware.context:ContextMiddleware.factory
#For more information see Auth-Token Middleware with Username and Password
#http://docs.openstack.org/developer/keystone/configuringservices.html
[filter:authtoken]
paste.filter_factory = keystoneclient.middleware.auth_token:filter_factory
auth_host = localhost

View File

@ -11,8 +11,7 @@ bind_host = 0.0.0.0
# Port the bind the server to
bind_port = 8082
# Log to this file. Make sure the user running skeleton-api has
# permissions to write to this file!
# Log to this file. Make sure the user has permissions to write to this file!
log_file = /tmp/murano-api.log
#A valid SQLAlchemy connection string for the metadata database
@ -22,14 +21,26 @@ sql_connection = sqlite:///murano.sqlite
db_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
virtual_host = murano
login = murano
password = murano
# 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 = /