Spaces:
Sleeping
Sleeping
Update Redis supervisor configuration to bind to localhost and disable protected mode
Browse files- docker/supervisor.conf +1 -1
docker/supervisor.conf
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
[program:redis]
|
2 |
-
command=redis-server --bind
|
3 |
autostart=true
|
4 |
autorestart=true
|
5 |
startretries=3
|
|
|
1 |
[program:redis]
|
2 |
+
command=redis-server --bind 127.0.0.1 --port 6379 --protected-mode no
|
3 |
autostart=true
|
4 |
autorestart=true
|
5 |
startretries=3
|