diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-11-21 16:20:45 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-11-21 16:20:45 +0000 |
commit | ac675792e2277deee495bf98f34045c4b3f4d954 (patch) | |
tree | f59a45e41d43e4b86d11195b644931edfdfc4cb9 /conf/workers.conf | |
parent | 3a790729df214dfb00d0d92f813819b23edb23fb (diff) | |
download | rspamd-ac675792e2277deee495bf98f34045c4b3f4d954.tar.gz rspamd-ac675792e2277deee495bf98f34045c4b3f4d954.zip |
Add basics of the new configuration.
Diffstat (limited to 'conf/workers.conf')
-rw-r--r-- | conf/workers.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/conf/workers.conf b/conf/workers.conf new file mode 100644 index 000000000..1d8e0df90 --- /dev/null +++ b/conf/workers.conf @@ -0,0 +1,20 @@ +# Common workers configuration + +worker { + type = "normal"; + bind_socket = "*:11333"; + http = false; + allow_learn = true; + mime = true; +} +worker { + type = "controller"; + bind_socket = "127.0.0.1:11334"; + count = 1; +} +worker { + type = "webui"; + count = 1; + bind_socket = "localhost:11336"; + password = "q1"; +} |