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".
This commit is contained in:
Alexandre Perrin 2014-01-17 11:07:23 +01:00
parent f16357c9ac
commit 2c47cda1c4

View File

@ -9,7 +9,7 @@ worker {
}
worker {
type = "controller";
bind_socket = "127.0.0.1:11334";
bind_socket = "localhost:11334";
count = 1;
}
worker {