]> source.dussan.org Git - rspamd.git/commitdiff
workers.conf: controller listen to localhost instead of 127.0.0.1 24/head
authorAlexandre Perrin <alex@kaworu.ch>
Fri, 17 Jan 2014 10:07:23 +0000 (11:07 +0100)
committerAlexandre Perrin <alex@kaworu.ch>
Fri, 17 Jan 2014 10:07:23 +0000 (11:07 +0100)
the rspamc controller default host is "localhost" and using by default 127.0.0.1 for rspamd controller is an issue on hosts using IPv6 as "localhost".

conf/workers.conf

index 1d8e0df901df0bfc8b155355e609d89af47c3539..b6cae0e560d612b0fe30957a5e747c5812d33646 100644 (file)
@@ -9,7 +9,7 @@ worker {
 }
 worker {
     type = "controller";
-    bind_socket = "127.0.0.1:11334";
+    bind_socket = "localhost:11334";
     count = 1;
 }
 worker {