Skip to content

Commit

Permalink
fix: docs set defaults on tenant for example (#199)
Browse files Browse the repository at this point in the history
* fix: docs set defaults on tenant for example

* fix: bump version
  • Loading branch information
chasers authored Nov 3, 2023
1 parent 23dbbe4 commit ccc1a2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.24
0.9.25
7 changes: 4 additions & 3 deletions docs/development/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,18 @@ curl -X PUT \
"db_host": "localhost",
"db_port": 6432,
"db_database": "postgres",
"ip_version": "auto", // "auto" | v4 | v6
"ip_version": "auto", // "auto" | "v4" | "v6"
"require_user": true, // true | false
"upstream_ssl": true, // true | false,
"enforce_ssl": false, // true | false,
"upstream_verify": "peer", // "none" | "peer"
"upstream_tls_ca": "-----BEGIN CERTIFICATE-----\nblalblalblablalblalblaba\n-----END CERTIFICATE-----\n", // ""
"upstream_tls_ca": "-----BEGIN CERTIFICATE-----\nblalblalblablalblalblaba\n-----END CERTIFICATE-----\n", // "",
"default_max_clients": 200,
"default_pool_size: 15,
"users": [
{
"db_user": "postgres",
"db_password": "postgres",
"pool_size": 20,
"mode_type": "transaction",
"pool_checkout_timeout": 100
}
Expand Down

0 comments on commit ccc1a2b

Please sign in to comment.