mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-01 10:41:16 -05:00
19 lines
429 B
Plaintext
19 lines
429 B
Plaintext
# Basic PostgreSQL configuration
|
|
max_connections = 200
|
|
shared_buffers = 256MB
|
|
dynamic_shared_memory_type = posix
|
|
max_wal_size = 1GB
|
|
min_wal_size = 80MB
|
|
log_timezone = 'UTC'
|
|
datestyle = 'iso, mdy'
|
|
timezone = 'UTC'
|
|
lc_messages = 'en_US.utf8'
|
|
lc_monetary = 'en_US.utf8'
|
|
lc_numeric = 'en_US.utf8'
|
|
lc_time = 'en_US.utf8'
|
|
default_text_search_config = 'pg_catalog.english'
|
|
|
|
# Listen on all interfaces
|
|
listen_addresses = '*'
|
|
port = 5432
|