Forge Cache Server: Fix Redis Binding

By default a new Forge Cache server comes with Redis 7.x and is bound to loopback ip addresses only. To allow communication between Forge servers, you will need to update the bind setting in /etc/redis/redis.conf.

# ...
bind * -::*
# ...
protected-mode no
# ...

Restart service after, using command sudo service redis-server restart.