Module luchia.conf
Global configuration file.
Info:
- Copyright: 2011-2015 Chad Phillips
- Author: Chad Phillips
Tables
default.server | The default server. |
log | Logging options. |
Tables
- default.server
-
The default server.
When no server object is created specifically, the default server is used.
Fields:
- protocol Required. The protocol to use, currently only "http" is allowed.
- host Required. The host name, eg. "localhost" or "www.example.com".
- port Required. The port to use, eg. "5984".
- user Optional. For authentication scenarios, the user to authenticate as.
- password Optional. For authentication scenarios, the user's password.
- log
-
Logging options.
Fields:
- appender Where to log messages. Must be one of "console", "file", false (disables logging).
- level Minimum level of messages to log. Must be one of "DEBUG", "INFO", "WARN", "ERROR", "FATAL"
- format String format for logged messages. Tokens are %date, %level, %message, eg. "%level %message\n".
- file Full path of a file to log to if appender is set to "file", eg. "/tmp/luchia.log".