summaryrefslogtreecommitdiff
blob: c6fd787f744ded07c2e66cfcaeb075b7a71526a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# PostgreSQL's Database Directory
PGDATA="/var/lib/postgresql/data"

# 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"