aboutsummaryrefslogtreecommitdiffstats
path: root/conf/rspamd.systemd.conf
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-03-10 17:04:48 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-03-10 17:04:48 +0000
commit88e0cdf0fb1b80a137a05b05ba3cbb3881457838 (patch)
tree0870fde740ff01c2d89ae19870e770f3d3d38806 /conf/rspamd.systemd.conf
parentac0307f4de186629bcbc58582f0207825fe56740 (diff)
downloadrspamd-88e0cdf0fb1b80a137a05b05ba3cbb3881457838.tar.gz
rspamd-88e0cdf0fb1b80a137a05b05ba3cbb3881457838.zip
[Feature] Rework includes and configuration system
Diffstat (limited to 'conf/rspamd.systemd.conf')
-rw-r--r--conf/rspamd.systemd.conf8
1 files changed, 8 insertions, 0 deletions
diff --git a/conf/rspamd.systemd.conf b/conf/rspamd.systemd.conf
index 95643138a..4ca52afaf 100644
--- a/conf/rspamd.systemd.conf
+++ b/conf/rspamd.systemd.conf
@@ -2,20 +2,28 @@
options {
.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 = "console";
systemd = true;
.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 = "systemd:0";
.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 = "systemd:1";
.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"
}