summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/postgresql/files/postgresql.conf-7.4')
-rw-r--r--dev-db/postgresql/files/postgresql.conf-7.420
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-db/postgresql/files/postgresql.conf-7.4 b/dev-db/postgresql/files/postgresql.conf-7.4
new file mode 100644
index 0000000..6c8ecc5
--- /dev/null
+++ b/dev-db/postgresql/files/postgresql.conf-7.4
@@ -0,0 +1,20 @@
+# PostgreSQL's Database Directory
+PGDATA="/var/lib/postgresql/data"
+
+# Alternate database data locations
+# Please read http://www.postgresql.org/docs/7.4/static/manage-ag-alternate-locs.html
+# for more information.
+# Example:
+# PGDATA_ALT="PGDATA_RAID=/mnt/superfastraid"
+PGDATA_ALT=
+
+# Logfile path (NOTE: This must be owned by the uid/gid of $PGUSER!)
+PGLOG="/var/lib/postgresql/data/postgresql.log"
+
+# PostgreSQL User
+PGUSER="postgres"
+
+# Extra options to run postmaster with
+# If you want to enable TCP/IP for PostgreSQL, add -i, like the following:
+# PGOPTS="-N 512 -B 1024 -i"
+PGOPTS="-N 512 -B 1024"