summaryrefslogtreecommitdiff
path: root/private/php-pgsql/pgsql.ini
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2020-12-09 18:28:42 +0100
committerEugen Wissner <belka@caraus.de>2020-12-09 18:28:42 +0100
commit2910a89d6c59b997a3896f05c6ad7fb65c26f813 (patch)
tree3d3edebdf32b0c972e8449b82be2c10742395d6c /private/php-pgsql/pgsql.ini
parentbe64bc6dbb9d0f717f7cbdd83d9371de979d4c63 (diff)
downloadslackbuilder-2910a89d6c59b997a3896f05c6ad7fb65c26f813.tar.gz
Add autoupdater
Diffstat (limited to 'private/php-pgsql/pgsql.ini')
-rw-r--r--private/php-pgsql/pgsql.ini21
1 files changed, 21 insertions, 0 deletions
diff --git a/private/php-pgsql/pgsql.ini b/private/php-pgsql/pgsql.ini
new file mode 100644
index 0000000..017cd7f
--- /dev/null
+++ b/private/php-pgsql/pgsql.ini
@@ -0,0 +1,21 @@
+; Enable pgsql extension module
+; extension=pgsql.so
+
+; Whether to allow persistent Postgres connections.
+; pgsql.allow_persistent="1"
+
+; The maximum number of persistent Postgres connections per process.
+; pgsql.max_persistent="-1"
+
+; The maximum number of Postgres connections per process, including persistent connections.
+; pgsql.max_links="-1"
+
+; Detect broken persistent links with pg_pconnect(). Needs a little overhead.
+; pgsql.auto_reset_persistent="0"
+
+; Whether or not to ignore PostgreSQL backend notices.
+; pgsql.ignore_notice="0"
+
+; Whether or not to log PostgreSQL backends notice messages. The PHP directive
+; pgsql.ignore_notice must be off in order to log notice messages.
+; pgsql.log_notice="0"