Change-Id: I216ca2daa3410ffc24daba6d7b5e528e114c4008
2.3 KiB
Overview of zaqar.conf
The zaqar.conf
configuration file is an INI file format as
explained in ../config-format
.
This file is located in /etc/zaqar
. If there is a file
zaqar.conf
in ~/.zaqar
directory, it is used
instead of the one in /etc/zaqar
directory. When you
manually install the Message service, you must generate the zaqar.conf
file using the config samples generator located inside Zaqar
installation directory and customize it according to your
preferences.
To generate the sample configuration file
zaqar/etc/zaqar.conf.sample
:
# pip install tox
$ cd zaqar
$ tox -e genconfig
Where {zaqar}
is
your Message service installation directory.
Then copy Message service configuration sample to the directory
/etc/zaqar
:
# cp etc/zaqar.conf.sample /etc/zaqar/zaqar.conf
For a list of configuration options, see the tables in this guide.
Important
Do not specify quotes around configuration options.
Sections
Configuration options are grouped by section. Message service configuration file supports the following sections:
- [DEFAULT]
-
Contains most configuration options. If the documentation for a configuration option does not specify its section, assume that it appears in this section.
- [cache]
-
Configures caching.
- [drivers]
-
Select drivers.
- [transport]
-
Configures general transport options.
- [drivers:transport:wsgi]
-
Configures the WSGI transport driver.
- [drivers:transport:websocket]
-
Configures the Websocket transport driver.
- [storage]
-
Configures general storage options.
- [drivers:management_store:mongodb]
-
Configures the MongoDB management storage driver.
- [drivers:message_store:mongodb]
-
Configures the MongoDB message storage driver.
- [drivers:management_store:redis]
-
Configures the Redis management storage driver.
- [drivers:message_store:redis]
-
Configures the Redis message storage driver.
- [drivers:management_store:sqlalchemy]
-
Configures the SQLalchemy management storage driver.
- [keystone_authtoken]
-
Configures the Identity service endpoint.
- [oslo_policy]
-
Configures the RBAC policy.
- [pooling:catalog]
-
Configures the pooling catalog.
- [signed_url]
-
Configures signed URLs.