Skip to content

Commit

Permalink
Fix outdated protected-mode documentation in sentinel.conf (redis#9896)
Browse files Browse the repository at this point in the history
In 666b343, we modified the default value of protected-mode
from yes to no.

However, this change is not mentioned in sentinel.conf.
Looking at the sentinel.conf alone, it is easy to make
people think that in sentinel mode, we hava truned on
the protected-mode.
  • Loading branch information
enjoy-binbin authored Dec 8, 2021
1 parent a7726cd commit f0373f7
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions sentinel.conf
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
# Example sentinel.conf

# *** IMPORTANT ***
#
# By default Sentinel will not be reachable from interfaces different than
# localhost, either use the 'bind' directive to bind to a list of network
# interfaces, or disable protected mode with "protected-mode no" by
# adding it to this configuration file.
#
# Before doing that MAKE SURE the instance is protected from the outside
# world via firewalling or other means.
#
# For example you may use one of the following:
#
# bind 127.0.0.1 192.168.1.1
#
# protected-mode no
# By default protected mode is disabled in sentinel mode. Sentinel is reachable
# from interfaces different than localhost. Make sure the sentinel instance is
# protected from the outside world via firewalling or other means.
protected-mode no

# port <sentinel-port>
# The port that this sentinel instance will run on
Expand Down

0 comments on commit f0373f7

Please sign in to comment.