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`.

Fix Kong#2254
  • Loading branch information
Tieske authored and thibaultcha committed Mar 24, 2017
1 parent 172f267 commit 32e4d16
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 32e4d16

Please sign in to comment.