From 2c47cda1c4b6275becab3c5c4379b4b636fad915 Mon Sep 17 00:00:00 2001 From: Alexandre Perrin Date: Fri, 17 Jan 2014 11:07:23 +0100 Subject: [PATCH] workers.conf: controller listen to localhost instead of 127.0.0.1 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/workers.conf b/conf/workers.conf index 1d8e0df901..b6cae0e560 100644 --- a/conf/workers.conf +++ b/conf/workers.conf @@ -9,7 +9,7 @@ worker { } worker { type = "controller"; - bind_socket = "127.0.0.1:11334"; + bind_socket = "localhost:11334"; count = 1; } worker { -- 2.47.3