yate/conf.d/pgsqldb.conf.sample

49 lines
1.3 KiB
Plaintext

[general]
; This section is special - holds settings common to all connections
; priority: int: Handler priority
;priority=100
; Each other section in this file describes a database connection
;[default]
; The section name is used as the database connection name
; autostart: bool: Automatically initiate the connection on startup
;autostart=yes
; timeout: int: Query timeout in milliseconds
;timeout=10000
; retry: int: How many times to retry the connection or query
;retry=5
; encoding: string: Character set encoding used to communicate with the server
; If not set will match the encoding of server side database
;encoding=
; connection: string: Ready-built client connection string for PQconnectStart
; If this is not set the string is built from the following pieces
; Take care if you set this - it will override anything that follows
;connection=
; host: string: PostgreSQL server to connect to
;host=localhost
; port: int: Port on which the server is listening for connections
;port=5432
; database: string: Name of the database to use in queries
;database=yate
; user: string: Username to use to access the database
;user=postgres
; password: string: Password to authenticate the user to the database server
;password=
; poolsize: int: Number of connections to establish for this account
; Minimum number of connections is 1
;poolsize=1