24 lines
926 B
Plaintext
24 lines
926 B
Plaintext
bind 0.0.0.0
|
|
|
|
# Protected mode is a layer of security protection, in order to avoid that
|
|
# Redis instances left open on the internet are accessed and exploited.
|
|
#
|
|
# When protected mode is on and if:
|
|
#
|
|
# 1) The server is not binding explicitly to a set of addresses using the
|
|
# "bind" directive.
|
|
# 2) No password is configured.
|
|
#
|
|
# The server only accepts connections from clients connecting from the
|
|
# IPv4 and IPv6 loopback addresses 127.0.0.1 and ::1, and from Unix domain
|
|
# sockets.
|
|
#
|
|
# By default protected mode is enabled. You should disable it only if
|
|
# you are sure you want clients from other hosts to connect to Redis
|
|
# even if no authentication is configured, nor a specific set of interfaces
|
|
# are explicitly listed using the "bind" directive.
|
|
protected-mode no
|
|
|
|
# Accept connections on the specified port, default is 6379 (IANA #815344).
|
|
# If port 0 is specified Redis will not listen on a TCP socket.
|
|
port 6379 |