21 lines
388 B
Plaintext
21 lines
388 B
Plaintext
# willhaben-tracker — PostgreSQL configuration
|
|
listen_addresses = '*'
|
|
port = 5432
|
|
max_connections = 100
|
|
|
|
# Replication (needed for Supabase realtime)
|
|
wal_level = logical
|
|
max_wal_senders = 0
|
|
max_replication_slots = 0
|
|
|
|
# Performance
|
|
shared_buffers = 128MB
|
|
work_mem = 4MB
|
|
maintenance_work_mem = 64MB
|
|
|
|
# Timeouts
|
|
idle_in_transaction_session_timeout = 60000
|
|
|
|
# Logging
|
|
log_statement = 'ddl'
|