mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-25 10:03:17 -04:00
27 lines
594 B
Plaintext
27 lines
594 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'
|
|
|
|
# Logging configuration
|
|
log_checkpoints = off
|
|
log_connections = off
|
|
log_disconnections = off
|
|
log_duration = off
|
|
log_line_prefix = '%m [%p] '
|
|
log_statement = 'none'
|
|
|
|
# Listen on all interfaces
|
|
listen_addresses = '*'
|
|
port = 5432
|