aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/misc/postgresql.conf.sample
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-06-04 01:44:38 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-06-04 01:44:38 +0000
commit209aa77d98d8d44b329e942e6f15aec1284db2ca (patch)
treed68949ba2f6d558aae721aca8bfd35de4cfdb387 /src/backend/utils/misc/postgresql.conf.sample
parent2ea370a3ceea5f3a30df709dea08c41c1f19e486 (diff)
downloadpostgresql-209aa77d98d8d44b329e942e6f15aec1284db2ca.tar.gz
postgresql-209aa77d98d8d44b329e942e6f15aec1284db2ca.zip
New ps display code, works on more platforms.
Install a default configuration file. Clean up some funny business in the config file code.
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
new file mode 100644
index 00000000000..4fc286a4ee2
--- /dev/null
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -0,0 +1,20 @@
+#
+# PostgreSQL configuration file
+# -----------------------------
+#
+# This file consists of lines of the form
+#
+# name = value
+#
+# (The `=' is optional.) White space is collapsed, comments are
+# introduced by `#' anywhere on a line. The complete list of option
+# names and allowed values can be found in the PostgreSQL
+# documentation. Examples are:
+
+#log_connections = on
+#fsync = off
+#max_backends = 64
+
+# Any option can also be given as a command line switch to the
+# postmaster, e.g., `postmaster --log-connections=on'. Some options
+# can be set at run-time with the `SET' SQL command.