910451514d
This patchset separates the configuration of the proxy from that of the queues server. This was done in order to simplify the configuration file for each, and because it is not expected that the proxy and the queues servers would be launched on the same host. Furthermore, many of the proxy options are not relevant to the queues server. Furthermore, to allow this, common.config had to be modified to take a prog parameter. This enabled the ability to save multiple configuration files to one directory. See below for details. The new files are: - etc/marconi-proxy.conf - etc/marconi-queues.conf They are expected to be saved to one of: - ~/.marconi - /etc/marconi Regarding namespaces, queues specific options are associated with the 'queues:*' group and proxy specific options are associated to the 'proxy:*' group. The appropriate changes are also applied to the test suite and helpers. Change-Id: I7cf25e47ecff47934b50c21000b31308e1a4c8a9 Implements: blueprint placement-service
43 lines
1023 B
Plaintext
43 lines
1023 B
Plaintext
# By default, this should line in one of:
|
|
# ~/.marconi/marconi-proxy.conf
|
|
# /etc/marconi/marconi-proxy.conf
|
|
|
|
[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
|
|
|
|
# Log to this file!
|
|
log_file = /var/log/marconi/proxy.log
|
|
|
|
;auth_strategy =
|
|
|
|
# ================= Syslog Options ============================
|
|
|
|
# Send logs to syslog (/dev/log) instead of to file specified
|
|
# by `log_file`
|
|
;use_syslog = False
|
|
|
|
# Facility to use. If unset defaults to LOG_USER.
|
|
;syslog_log_facility = LOG_LOCAL0
|
|
|
|
|
|
# Transport driver module (e.g., wsgi, zmq)
|
|
# Storage driver module (e.g., mongodb, sqlite)
|
|
[proxy:drivers]
|
|
transport = wsgi
|
|
storage = mongodb
|
|
|
|
[proxy:drivers:transport:wsgi]
|
|
;bind = 0.0.0.0
|
|
;port = 8889
|
|
|
|
[proxy:drivers:storage:mongodb]
|
|
uri = mongodb://db1.example.net,db2.example.net:2500/?replicaSet=test&ssl=true&w=majority
|
|
database = marconi_proxy
|
|
|
|
[oslo_cache]
|
|
;cache_backend = memcached
|
|
;cache_prefix = my_namespace |