aboutsummaryrefslogtreecommitdiffstats
path: root/conf/rspamd.sysvinit.conf
blob: 0360b1a17acf9a3570d4abb053895e608d8cbaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.include "$CONFDIR/common.conf"

options {
    pidfile = "$RUNDIR/rspamd.pid";
    .include "$CONFDIR/options.inc"
    .include(try=true; priority=1) "$CONFDIR/local.d/options.inc"
    .include(try=true; priority=10) "$CONFDIR/override.d/options.inc"
}

logging {
    type = "file";
    filename = "$LOGDIR/rspamd.log";
    .include "$CONFDIR/logging.inc"
    .include(try=true; priority=1) "$CONFDIR/local.d/logging.inc"
    .include(try=true; priority=10) "$CONFDIR/override.d/logging.inc"
}

worker {
    bind_socket = "*:11333";
    .include "$CONFDIR/worker-normal.inc"
    .include(try=true; priority=1) "$CONFDIR/local.d/worker-normal.inc"
    .include(try=true; priority=10) "$CONFDIR/override.d/worker-normal.inc"
}

worker {
    bind_socket = "localhost:11334";
    .include "$CONFDIR/worker-controller.inc"
    .include(try=true; priority=1) "$CONFDIR/local.d/worker-controller.inc"
    .include(try=true; priority=10) "$CONFDIR/override.d/worker-controller.inc"
}