PromucFlow_constructor/deploy/docker/templates/supervisord/redis.conf
Shrikant Sharat Kandula fae3a4e7c7
chore: Redis config don't write to filesystem at runtime (#26788)
Step towards not changing anything in the filesystem at runtime, except
for things in `/tmp`.
2023-09-05 12:38:51 +05:30

19 lines
662 B
Plaintext

[program:redis]
directory=/etc/redis
; The `--save` is for saving session data to disk more often, so recent sessions aren't cleared on restart.
; The empty string to `--logfile` is for logging to stdout so that supervisor can capture it.
command=redis-server --save 15 1 --dir /appsmith-stacks/data/redis --daemonize no --logfile ""
priority=5
autostart=true
autorestart=true
startsecs=0
startretries=3
stdout_logfile=/appsmith-stacks/logs/%(program_name)s/%(program_name)s.log
redirect_stderr=true
stdout_logfile_maxbytes=10MB
stderr_logfile_maxbytes=10MB
stdout_logfile_backups=2
stderr_logfile_backups=2
stdout_events_enabled=true
stderr_events_enabled=true