summaryrefslogtreecommitdiffstats
path: root/conf/rspamd.sysvinit.conf
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-03-10 19:03:51 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-03-10 19:03:51 +0000
commit71a370bd1a4abb9e2acf5173146629733d7bdf15 (patch)
tree7732f7bfb179a2ae5c26e2530a9c2a61cfbf8273 /conf/rspamd.sysvinit.conf
parent091633c9af89efaf1d93944b90f931b119af2462 (diff)
downloadrspamd-71a370bd1a4abb9e2acf5173146629733d7bdf15.tar.gz
rspamd-71a370bd1a4abb9e2acf5173146629733d7bdf15.zip
[Feature] Rework includes system in the configuration
Diffstat (limited to 'conf/rspamd.sysvinit.conf')
-rw-r--r--conf/rspamd.sysvinit.conf16
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"
}