This file contains hidden or 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
listen_addresses = '*' # what IP address(es) to listen on; | |
port = 5432 # (change requires restart) | |
max_connections = 100 # (change requires restart) | |
ssl = on | |
ssl_cert_file = 'server.crt' | |
ssl_key_file = 'server.key' | |
shared_buffers = 128MB # min 128kB | |
dynamic_shared_memory_type = posix # the default is usually the first option | |
max_wal_size = 1GB | |
min_wal_size = 80MB |