Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / docker / postgresql / postgresql.conf
1 # For full documentation on run-time settings see
2 # http://www.postgresql.org/docs/9.2/static/runtime-config.html
3
4 listen_addresses = '*'
5 data_directory = '/var/lib/postgresql/9.1/main'         # use data in another directory
6 hba_file = '/etc/postgresql/9.1/main/pg_hba.conf'       # host-based authentication file
7 ident_file = '/etc/postgresql/9.1/main/pg_ident.conf'   # ident configuration file
8 external_pid_file = '/var/run/postgresql/9.1-main.pid'          # write an extra PID file
9 port = 5432                             # (change requires restart)
10 max_connections = 100                   # (change requires restart)
11 unix_socket_directory = '/var/run/postgresql'           # (change requires restart)
12 ssl = true                              # (change requires restart)
13 shared_buffers = 24MB                   # min 128kB
14 log_line_prefix = '%t '                 # special values:
15 datestyle = 'iso, mdy'
16 lc_messages = 'C'                       # locale for system error message
17 lc_monetary = 'C'                       # locale for monetary formatting
18 lc_numeric = 'C'                        # locale for number formatting
19 lc_time = 'C'                           # locale for time formatting
20 default_text_search_config = 'pg_catalog.english'