diff options
Diffstat (limited to 'conf/rspamd.systemd.conf')
-rw-r--r-- | conf/rspamd.systemd.conf | 8 |
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" } |