Created
August 9, 2011 22:29
-
-
Save carlzulauf/1135380 to your computer and use it in GitHub Desktop.
PostgreSQL configuration file for a development environment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data_directory = '/var/lib/postgresql/9.0/main' | |
hba_file = '/etc/postgresql/9.0/main/pg_hba.conf' | |
ident_file = '/etc/postgresql/9.0/main/pg_ident.conf' | |
external_pid_file = '/var/run/postgresql/9.0-main.pid' | |
#------------------------------------------------------------------------------ | |
# CONNECTIONS AND AUTHENTICATION | |
#------------------------------------------------------------------------------ | |
# - Connection Settings - | |
listen_addresses = 'localhost' # what IP address(es) to listen on; | |
# comma-separated list of addresses; | |
# defaults to 'localhost', '*' = all | |
# (change requires restart) | |
port = 5432 # (change requires restart) | |
max_connections = 100 # (change requires restart) | |
unix_socket_directory = '/var/run/postgresql' # (change requires restart) | |
ssl = true # (change requires restart) | |
shared_buffers = 24MB # min 128kB | |
#------------------------------------------------------------------------------ | |
# ERROR REPORTING AND LOGGING | |
#------------------------------------------------------------------------------ | |
log_destination = 'stderr' | |
logging_collector = on | |
log_directory = 'pg_log' | |
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' | |
log_truncate_on_rotation = off | |
log_rotation_age = 1d | |
log_rotation_size = 10MB | |
log_line_prefix = '%t ' # special values: | |
# %a = application name | |
# %u = user name | |
# %d = database name | |
# %r = remote host and port | |
# %h = remote host | |
# %p = process ID | |
# %t = timestamp without milliseconds | |
# %m = timestamp with milliseconds | |
# %i = command tag | |
# %e = SQL state | |
# %c = session ID | |
# %l = session line number | |
# %s = session start timestamp | |
# %v = virtual transaction ID | |
# %x = transaction ID (0 if none) | |
# %q = stop here in non-session | |
# processes | |
# %% = '%' | |
# e.g. '<%u%%%d> ' | |
datestyle = 'iso, mdy' | |
lc_messages = 'en_US.utf8' # locale for system error message | |
# strings | |
lc_monetary = 'en_US.utf8' # locale for monetary formatting | |
lc_numeric = 'en_US.utf8' # locale for number formatting | |
lc_time = 'en_US.utf8' # locale for time formatting | |
default_text_search_config = 'pg_catalog.english' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment