Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
Document the new SSL options
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Jul 5, 2024
1 parent edb01f1 commit c4c0c74
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/reference/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,17 @@ database:
password: password
database: database

# Whether to use SSL to connect to the database
ssl_mode: require # or disable, prefer, verify-ca, verify-full
#ssl_ca: # PEM-encoded certificate
ssl_ca_file: /path/to/ca.pem # Path to the root certificate file

# Client certificate to present to the server when SSL is enabled
#ssl_certificate: # PEM-encoded certificate
ssl_certificate_file: /path/to/cert.pem # Path to the certificate file
#ssl_key: # PEM-encoded key
ssl_key_file: /path/to/key.pem # Path to the key file

# Additional parameters for the connection pool
min_connections: 0
max_connections: 10
Expand Down

0 comments on commit c4c0c74

Please sign in to comment.