mirror of https://github.com/zulip/zulip.git
rabbitmq: Connect to rabbitmq via 127.0.0.1 rather than localhost.
This should eliminate the occasional problems that some installations have had with RabbitMQ trying to load-balance requests between 127.0.0.1 and ::1 (the ipv6 version of localhost).
This commit is contained in:
parent
ad066ca444
commit
af004fa6f5
|
@ -173,7 +173,7 @@ DEFAULT_SETTINGS = {
|
|||
# External service configuration
|
||||
'CAMO_URI': '',
|
||||
'MEMCACHED_LOCATION': '127.0.0.1:11211',
|
||||
'RABBITMQ_HOST': 'localhost',
|
||||
'RABBITMQ_HOST': '127.0.0.1',
|
||||
'RABBITMQ_USERNAME': 'zulip',
|
||||
'REDIS_HOST': '127.0.0.1',
|
||||
'REDIS_PORT': 6379,
|
||||
|
|
Loading…
Reference in New Issue