History log of /redis-3.2.3/redis.conf (Results 1 – 25 of 164)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: 8.0-m02, 6.2.16, 7.2.6, 7.4.1, 8.0-m01, 7.4.0, 7.4-rc2, 7.4-rc1, 7.2.5, 7.2.4, 7.0.15, 7.2.3, 7.2.2, 7.0.14, 6.2.14, 6.2.15, 7.2.1, 7.0.13, 7.2.0, 7.2-rc3, 7.0.12, 6.2.13, 6.0.20, 7.2-rc2, 6.0.19, 6.2.12, 7.0.11, 7.2-rc1, 7.0.10, 7.0.9, 6.2.11, 6.0.18, 6.2.10, 6.0.17, 6.2.9, 7.0.8, 7.0.7, 7.0.6, 6.2.8, 7.0.5, 7.0.4, 7.0.3, 7.0.2, 7.0.1, 7.0.0, 6.2.7, 7.0-rc3, 7.0-rc2, 7.0-rc1, 6.2.6, 6.0.16, 5.0.14, 5.0.13, 6.0.15, 6.2.5, 6.0.14, 6.2.4, 6.2.3, 6.0.13, 6.2.2, 6.2.1, 6.0.12, 5.0.12, 6.0.11, 6.2.0, 5.0.11, 6.2-rc3, 6.0.10, 6.2-rc2, 6.2-rc1, 6.0.9, 5.0.10, 6.0.8, 6.0.7, 6.0.6, 6.0.5, 6.0.4, 6.0.3, 6.0.2, 6.0.1, 6.0.0, 5.0.9, 6.0-rc4, 6.0-rc3, 5.0.8, 6.0-rc2, 6.0-rc1, 5.0.7, 5.0.6, 5.0.5, 3.2.13, 4.0.14, 5.0.4, 4.0.13, 5.0.3, 4.0.12, 5.0.2, 5.0.1, 5.0.0, 5.0-rc6, 5.0-rc5, 4.0.11, 5.0-rc4, 5.0-rc3, 5.0-rc2, 4.0.10, 3.2.12, 5.0-rc1, 4.0.9, 4.0.8, 4.0.7, 4.0.6, 4.0.5, 4.0.4, 4.0.3, 3.2.11, 4.0.2, 3.2.10, 4.0.1, 4.0.0, 3.2.9, 4.0-rc3, 3.2.8, 3.2.7, 3.2.6, 4.0-rc2, 4.0-rc1, 3.2.5, 3.2.4, 3.2.3, 3.2.2
# 0a45fbc3 27-Jul-2016 antirez <[email protected]>

Ability of slave to announce arbitrary ip/port to master.

This feature is useful, especially in deployments using Sentinel in
order to setup Redis HA, where the slave is executed with NAT or port
fo

Ability of slave to announce arbitrary ip/port to master.

This feature is useful, especially in deployments using Sentinel in
order to setup Redis HA, where the slave is executed with NAT or port
forwarding, so that the auto-detected port/ip addresses, as listed in
the "INFO replication" output of the master, or as provided by the
"ROLE" command, don't match the real addresses at which the slave is
reachable for connections.

show more ...


Revision tags: 3.2.1
# 40cfe131 13-Jun-2016 antirez <[email protected]>

Enable tcp-keepalive by default.


Revision tags: 3.2.0
# 6937f596 19-Apr-2016 bogdanvlviv <[email protected]>

fix pidfile in redis.conf


Revision tags: 3.2.0-rc3, 3.0.7, 3.2.0-rc2
# 273c49e7 07-Jan-2016 antirez <[email protected]>

New security feature: Redis protected mode.

An exposed Redis instance on the internet can be cause of serious
issues. Since Redis, by default, binds to all the interfaces, it is easy
to forget an in

New security feature: Redis protected mode.

An exposed Redis instance on the internet can be cause of serious
issues. Since Redis, by default, binds to all the interfaces, it is easy
to forget an instance without any protection layer, for error.

Protected mode try to address this feature in a soft way, providing a
layer of protection, but giving clues to Redis users about why the
server is not accepting connections.

When protected mode is enabeld (the default), and if there are no
minumum hints about the fact the server is properly configured (no
"bind" directive is used in order to restrict the server to certain
interfaces, nor a password is set), clients connecting from external
intefaces are refused with an error explaining what to do in order to
fix the issue.

Clients connecting from the IPv4 and IPv6 lookback interfaces are still
accepted normally, similarly Unix domain socket connections are not
restricted in any way.

show more ...


Revision tags: 3.2-rc1, 3.0.6, 2.8.24
# a8a25573 03-Dec-2015 antirez <[email protected]>

Fix typo UNCOMMENT -> COMMENT in example redis.conf.


Revision tags: 3.0.5, 2.8.23
# e16c0c19 15-Oct-2015 antirez <[email protected]>

Redis.conf example: make clear user must pass its path as argument.


Revision tags: 2.8.22, 3.0.4, 3.0.3, 3.0.2, 2.8.21, 2.8.20, 3.0.1
# 1a93501f 26-Apr-2015 antirez <[email protected]>

Example redis.conf doc about pidfile fixed.

An user changed the behavior via a PR without upgrading the doc.


# 066d7a29 23-Apr-2015 Itamar Haber <[email protected]>

Added reference to IANA ticket for port 6379

Just so it's extra official :smile:


Revision tags: 3.0.0, 3.0.0-rc6, 3.0.0-rc5
# 0aa5acc8 19-Feb-2015 antirez <[email protected]>

Give obvious instructions on how to bind all interfaces.


# 10246642 19-Feb-2015 antirez <[email protected]>

Example redis.conf binds just to 127.0.0.1.

It's hard to pick a good approach here. A few arguments:

1) There are many exposed instances on the internet.
2) Changing the default when "bind" is not

Example redis.conf binds just to 127.0.0.1.

It's hard to pick a good approach here. A few arguments:

1) There are many exposed instances on the internet.
2) Changing the default when "bind" is not given is very dangerous,
after an upgrade the server changes a fundamental behavior.
3) Usually Redis, when used in a proper way, will be protected *and*
accessed often from other computers, so this new default is likely
not what most people want.
4) However if users end with this default, they are using the example
redis.conf: likely they are reading what is inside, and they'll see
the warning.

show more ...


Revision tags: 3.0.0-rc4
# 2b3eba05 12-Feb-2015 Masahiko Sawada <[email protected]>

Unify to uppercase the headline


Revision tags: 3.0.0-rc3, 3.0.0-rc2
# 36a3b753 08-Jan-2015 Matt Stancliff <[email protected]>

Supervise redis processes only if configured

Adds configuration option 'supervised [no | upstart | systemd | auto]'

Also removed 'bzero' from the previous implementation because it's 2015.
(We coul

Supervise redis processes only if configured

Adds configuration option 'supervised [no | upstart | systemd | auto]'

Also removed 'bzero' from the previous implementation because it's 2015.
(We could actually statically initialize those structs, but clang
throws an invalid warning when we try, so it looks bad even though it
isn't bad.)

Fixes #2264

show more ...


# 42357668 08-Jan-2015 antirez <[email protected]>

Advertise Redis Cluster as experimental in redis.conf.


Revision tags: 2.8.19
# 02bb515a 16-Dec-2014 Matt Stancliff <[email protected]>

Config: Add quicklist, remove old list options

This removes:
- list-max-ziplist-entries
- list-max-ziplist-value

This adds:
- list-max-ziplist-size
- list-compress-depth

Also updates confi

Config: Add quicklist, remove old list options

This removes:
- list-max-ziplist-entries
- list-max-ziplist-value

This adds:
- list-max-ziplist-size
- list-compress-depth

Also updates config file with new sections and updates
tests to use quicklist settings instead of old list settings.

show more ...


Revision tags: 2.8.18
# e07dd8b3 02-Dec-2014 antirez <[email protected]>

Mark diskless replication as experimental in redis.conf.


# 6df9001d 31-Oct-2014 Mariano Pérez Rodríguez <[email protected]>

Typo fixes in redis.conf

Fix two typos in redis.conf:

- "trnasfers" --> "transfers"
- "enalbed" --> "enabled"


# 3b9a9798 27-Oct-2014 antirez <[email protected]>

Document repl-diskless-sync-delay in redis.conf.


# 18de5395 24-Oct-2014 antirez <[email protected]>

Diskless replication documented inside example redis.conf.


Revision tags: 3.0.0-rc1
# be006163 29-Sep-2014 Miguel Parramon <[email protected]>

redis.conf small grammar fix

:smile:

Closes #2034


Revision tags: 2.8.17, 2.8.16, 2.8.15, 2.8.14
# 12d0195b 31-Jul-2014 Matt Stancliff <[email protected]>

Clean up text throughout project

- Remove trailing newlines from redis.conf
- Fix comment misspelling
- Clarifies zipEncodeLength usage and a C API mention (#1243, #1242)
- Fix cluster typos

Clean up text throughout project

- Remove trailing newlines from redis.conf
- Fix comment misspelling
- Clarifies zipEncodeLength usage and a C API mention (#1243, #1242)
- Fix cluster typos (inspired by @papanikge #1507)
- Fix rewite -> rewrite in a few places (inspired by #682)

Closes #1243, #1242, #1507

show more ...


Revision tags: 3.0.0-beta8, 2.8.13, 3.0.0-beta7, 2.8.12, 2.8.11, 3.0.0-beta6, 2.8.10, 3.0.0-beta5, 3.0.0-beta4, 3.0.0-beta3, 2.8.9, 2.8.8, 3.0.0-beta2, 2.8.7, 2.8.6, 3.0.0-beta1, 2.8.5, 2.8.4, 2.6.17, 2.8.3
# f62f00e0 05-Dec-2013 Ben <[email protected]>

Grammar and typo fixes in redis.conf

Closes #1441


# aa628446 29-Apr-2014 Jan-Erik Rediger <[email protected]>

Fix typo in redis.conf

Closes #1713


# df484c7a 25-Jul-2014 Manuel Meurer <[email protected]>

Improve disable save comment in redis.conf

Closes #1897


# c89afc8e 17-Sep-2014 antirez <[email protected]>

Cluster: new option to work with partial slots coverage.


# 31f79a46 08-Sep-2014 antirez <[email protected]>

Make aof-load-truncated option actually configurable.


1234567