diff options
Diffstat (limited to 'conf/rspamd.sysvinit.conf')
-rw-r--r-- | conf/rspamd.sysvinit.conf | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/conf/rspamd.sysvinit.conf b/conf/rspamd.sysvinit.conf index 0360b1a17..e24fe8902 100644 --- a/conf/rspamd.sysvinit.conf +++ b/conf/rspamd.sysvinit.conf @@ -3,28 +3,28 @@ 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" + .include(try=true; priority=1) "$LOCAL_CONFDIR/local.d/options.inc" + .include(try=true; priority=10) "$LOCAL_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" + .include(try=true; priority=1) "$LOCAL_CONFDIR/local.d/logging.inc" + .include(try=true; priority=10) "$LOCAL_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" + .include(try=true; priority=1) "$LOCAL_CONFDIR/local.d/worker-normal.inc" + .include(try=true; priority=10) "$LOCAL_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" + .include(try=true; priority=1) "$LOCAL_CONFDIR/local.d/worker-controller.inc" + .include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/worker-controller.inc" } |