17 lines
617 B
Plaintext
17 lines
617 B
Plaintext
# Accept connections on the specified port, default is 6379 (IANA #815344).
|
|
# If port 0 is specified the server will not listen on a TCP socket.
|
|
port 0
|
|
|
|
# Unix socket.
|
|
#
|
|
# Specify the path for the Unix socket that will be used to listen for
|
|
# incoming connections. There is no default, so the server will not listen
|
|
# on a unix socket when not specified.
|
|
#
|
|
unixsocket /run/valkey/valkey.sock
|
|
|
|
# Specify the log file name. Also the empty string can be used to force
|
|
# the server 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 ""
|