rspamd/conf/rspamd.conf
Mikhail Gusarov cd1028e0bd Reorganize configuration files for systemd
Common systemd/non-systemd options were moved to .inc
files. rspamd.conf is systemd-enabled one,
rspamd.sysvinit.conf is sysvinit-compatible one.
2015-03-17 18:55:45 +02:00

21 行
326 B
Plaintext

.include "$CONFDIR/common.conf"
options {
.include "$CONFDIR/options.inc"
}
logging {
type = "console";
.include "$CONFDIR/logging.inc"
}
worker {
bind_socket = "systemd:0";
.include "$CONFDIR/worker-normal.inc"
}
worker {
bind_socket = "systemd:1";
.include "$CONFDIR/worker-controller.inc"
}