table of contents
| bitz-server.conf(5) | File Formats Manual | bitz-server.conf(5) |
NAME¶
bitz-server.conf - bitz-server configuration file
SYNOPSIS¶
/etc/bitz/bitz-server.conf
DESCRIPTION¶
bitz-server(1) obtains configuration data from a config file, the location of which is specified at compile-time and can be overridden by command-line options during run-time.
Grammar¶
Below is the BNF grammar for configuration files. Comments and include directives are not part of the grammar, so they are not included here. See libconfig manual at http://www.hyperrealm.com/libconfig/libconfig_manual.html#Configuration-File-Grammar for more details.
configuration = setting-list | empty
setting-list = setting | setting-list setting
setting = name (":" | "=") value (";" | "," | empty)
value = scalar-value | array | list | group
value-list = value | value-list "," value
scalar-value = boolean | integer | integer64 | hex | hex64 | float | string
scalar-value-list = scalar-value | scalar-value-list "," scalar-value
array = "[" (scalar-value-list | empty) "]"
list = "(" (value-list | empty) ")"
group = "{" (setting-list | empty) "}"
empty =
Terminals are defined below as regular expressions:
AUTHOR¶
Uditha Atukorala <ua@nuked.zone>
SEE ALSO¶
bitz-server(1)
| November 2015 | Linux |