aboutsummaryrefslogtreecommitdiffstats
path: root/docker/rspamd.conf
blob: 46837de6afcb8a033d6d22b4d8652288a3223cfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.include "$CONFDIR/common.conf"

options {
    .include "$CONFDIR/options.inc"
}

logging {
    type = "console";
    systemd = false;
    .include "$CONFDIR/logging.inc"
}

worker {
    bind_socket = "*:11333";
    .include "$CONFDIR/worker-normal.inc"
}

worker {
    bind_socket = "localhost:11334";
    .include "$CONFDIR/worker-controller.inc"
}