aboutsummaryrefslogtreecommitdiffstats
path: root/docker/rspamd.conf
diff options
context:
space:
mode:
authorMatt Simerson <matt@tnpi.net>2015-11-16 00:18:27 -0800
committerMatt Simerson <matt@tnpi.net>2015-11-16 00:18:27 -0800
commit5b00fe5b2d5d3d99b55c4bd62d11b02eb2f8a9d2 (patch)
treedb5ba5d2fc61848ac8f1dd1400a6defe3912967f /docker/rspamd.conf
parent500203dbb870d239773485d6a80d3c41a21ee88e (diff)
downloadrspamd-5b00fe5b2d5d3d99b55c4bd62d11b02eb2f8a9d2.tar.gz
rspamd-5b00fe5b2d5d3d99b55c4bd62d11b02eb2f8a9d2.zip
Dockerfile, for running in Docker container
Diffstat (limited to 'docker/rspamd.conf')
-rw-r--r--docker/rspamd.conf21
1 files changed, 21 insertions, 0 deletions
diff --git a/docker/rspamd.conf b/docker/rspamd.conf
new file mode 100644
index 000000000..46837de6a
--- /dev/null
+++ b/docker/rspamd.conf
@@ -0,0 +1,21 @@
+.include "$CONFDIR/common.conf"
+
+options {
+ .include "$CONFDIR/options.inc"
+}
+
+logging {
+ type = "console";
+ systemd = false;
+ .include "$CONFDIR/logging.inc"
+}
+
+worker {
+ bind_socket = "*:11333";
+ .include "$CONFDIR/worker-normal.inc"
+}
+
+worker {
+ bind_socket = "localhost:11334";
+ .include "$CONFDIR/worker-controller.inc"
+}