Skip to content

Commit

Permalink
fix(config): align template config file with actual defaults
Browse files Browse the repository at this point in the history
the actual defaults had no passwords set for neither Cassandra nor Postgres,
yet the template config file had them both set to `kong`.

fixes #2254
  • Loading branch information
Tieske committed Mar 24, 2017
1 parent b5de071 commit 053647f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kong.conf.default
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
#pg_host = 127.0.0.1 # The PostgreSQL host to connect to.
#pg_port = 5432 # The port to connect to.
#pg_user = kong # The username to authenticate if required.
#pg_password = kong # The password to authenticate if required.
#pg_password = # The password to authenticate if required.
#pg_database = kong # The database name to connect to.

#pg_ssl = off # Toggles client-server TLS connections
Expand Down Expand Up @@ -167,7 +167,7 @@
#cassandra_username = kong # Username when using the
# `PasswordAuthenticator` scheme.

#cassandra_password = kong # Password when using the
#cassandra_password = # Password when using the
# `PasswordAuthenticator` scheme.

#cassandra_consistency = ONE # Consistency setting to use when reading/
Expand Down

0 comments on commit 053647f

Please sign in to comment.