File format¶
Yaml File Format¶
ejabberd
loads its configuration file during startup.
This configuration file is written in
YAML
format,
and its file name MUST have “.yml” or “.yaml” extension.
This helps ejabberd to differentiate between this new format
and the legacy configuration file format.
Please, consult ejabberd.log
for configuration errors. ejabberd
will
report syntax related errors, as well as complains about unknown options
and invalid values. Make sure you respect indentation (YAML is
sensitive to this) or you will get pretty cryptic errors.
Note that ejabberd
never edits the configuration file. If you are
changing parameters at runtime from web admin interface, you will need to apply
them to configuration file manually. This is to prevent messing up
with your config file comments, syntax, etc.
Reload at Runtime¶
You can modify the ejabberd
configuration file
and reload it at runtime:
the changes you made are applied immediately,
no need to restart ejabberd.
This applies to adding, changing or removing
vhosts, listened ports, modules, ACLs or any other options.
How to do this?
- Let's assume your ejabberd server is already running
- Modify the configuration file
- Run the reload_config command
- ejabberd will read that file, check its YAML syntax is valid, check the options are valid and known...
- If there's any problem in the configuration file, the reload is aborted and an error message is logged with details, so you can fix the problem.
- If the file is right, it detects the changed options, and applies them immediately (add/remove hosts, add/remove modules, ...)
Legacy Configuration File¶
In previous ejabberd
version the configuration file should be
written in Erlang terms. The format is still supported, but it is
highly recommended to convert it to the new YAML format with the
convert_to_yaml
API command using ejabberdctl.
If you want to specify some options using the old Erlang format, you
can set them in an additional cfg file, and include it using the
include_config_file
option, see
Include Additional Files.
Include Additional Files¶
The option include_config_file
in a configuration file instructs
ejabberd
to include other configuration files immediately.
This is a basic example:
In this example, the included file is not allowed to contain a listen
option. If such an option is present, the option will not be accepted.
The file is in a subdirectory from where the main configuration file is.
Please notice that options already defined in the main configuration file cannot be redefined in the included configuration files. But you can use host_config and append_host_config as usual (see Virtual Hosting).
In this example, ejabberd.yml
defines some ACL for the whole ejabberd server, and later includes another file:
The file acl.yml
can add additional administrators to one of the virtual hosts:
Macros in Configuration File¶
In the ejabberd
configuration file, it is possible to define a macro
for a value and later use this macro when defining an option.
A macro is defined using the define_macro option.
This example shows the basic usage of a macro:
The resulting option interpreted by ejabberd
is: loglevel: 5
.
This example shows that values can be any arbitrary YAML value:
The resulting option interpreted by ejabberd
is:
This complex example:
define_macro:
NUMBER_PORT_C2S: 5222
NUMBER_PORT_HTTP: 5280
listen:
-
port: NUMBER_PORT_C2S
module: ejabberd_c2s
-
port: NUMBER_PORT_HTTP
module: ejabberd_http
produces this result after being interpreted: