Skip to content

Commit

Permalink
Disable required authentication by default (#423)
Browse files Browse the repository at this point in the history
This PR disables the required authentication enabled by default in the
skel config file.

It additional fix some style issues.
  • Loading branch information
danielealbano authored May 28, 2023
1 parent fee3983 commit 7c57026
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions etc/cachegrand.yaml.skel
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ modules:

# If enabled, the client will have to authenticate before being able to execute any command, the password field
# will be mandatory
require_authentication: true
require_authentication: false

# Username, optional, if not set, the username will be set to "default"
# username: "default"

# Password, required when require_authentication is enabled
password: "changeme"
# password: "changeme"

# # List of commands that can be disabled for security reasons, optional
# disabled_commands:
# - "mset"
# List of commands that can be disabled for security reasons, optional
# disabled_commands:
# - "mset"

network:
# Timeouts for the read and write operations in milliseconds, set to -1 to disable or greater than 0 to enable
Expand Down

0 comments on commit 7c57026

Please sign in to comment.