postgresql.conf 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. data_directory = '/var/lib/postgresql/16/main'
  10. hba_file = '/etc/postgresql/16/main/pg_hba.conf'
  11. ident_file = '/etc/postgresql/16/main/pg_ident.conf'
  12. external_pid_file = '/var/run/postgresql/16-main.pid'
  13. listen_addresses = '*'
  14. port = 26257
  15. max_connections = 5000
  16. unix_socket_directories = '/var/run/postgresql'
  17. ssl = off
  18. shared_buffers = 128MB
  19. dynamic_shared_memory_type = posix
  20. max_wal_size = 1GB
  21. min_wal_size = 80MB
  22. log_line_prefix = '%m [%p] %q%u@%d '
  23. log_timezone = UTC
  24. cluster_name = '16/main'
  25. datestyle = 'iso, mdy'
  26. timezone = UTC
  27. lc_messages = 'C.UTF-8'
  28. lc_monetary = 'C.UTF-8'
  29. lc_numeric = 'C.UTF-8'
  30. lc_time = 'C.UTF-8'
  31. default_text_search_config = 'pg_catalog.english'