44 lines
2 KiB
Text
44 lines
2 KiB
Text
# #ddev-generated
|
|
################################# GENERAL #####################################
|
|
|
|
# By default Redis does not run as a daemon. Use 'yes' if you need it.
|
|
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
|
|
daemonize no
|
|
|
|
# If you run Redis from upstart or systemd, Redis can interact with your
|
|
# supervision tree. Options:
|
|
# supervised no - no supervision interaction
|
|
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
|
|
# requires "expect stop" in your upstart job config
|
|
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
|
|
# supervised auto - detect upstart or systemd method based on
|
|
# UPSTART_JOB or NOTIFY_SOCKET environment variables
|
|
# Note: these supervision methods only signal "process is ready."
|
|
# They do not enable continuous pings back to your supervisor.
|
|
supervised no
|
|
|
|
# Specify the server verbosity level.
|
|
# This can be one of:
|
|
# debug (a lot of information, useful for development/testing)
|
|
# verbose (many rarely useful info, but not a mess like the debug level)
|
|
# notice (moderately verbose, what you want in production probably)
|
|
# warning (only very important / critical messages are logged)
|
|
loglevel notice
|
|
|
|
# Specify the log file name. Also the empty string can be used to force
|
|
# Redis to log on the standard output. Note that if you use standard
|
|
# output for logging but daemonize, logs will be sent to /dev/null
|
|
logfile ""
|
|
|
|
# Set the number of databases. The default database is DB 0, you can select
|
|
# a different one on a per-connection basis using SELECT <dbid> where
|
|
# dbid is a number between 0 and 'databases'-1
|
|
databases 4
|
|
|
|
# By default Redis shows an ASCII art logo only when started to log to the
|
|
# standard output and if the standard output is a TTY. Basically this means
|
|
# that normally a logo is displayed only in interactive sessions.
|
|
#
|
|
# However it is possible to force the pre-4.0 behavior and always show a
|
|
# ASCII art logo in startup logs by setting the following option to yes.
|
|
always-show-logo yes
|