1234567891011121314151617181920212223242526272829303132 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- data_directory = '/var/lib/postgresql/16/main'
- hba_file = '/etc/postgresql/16/main/pg_hba.conf'
- ident_file = '/etc/postgresql/16/main/pg_ident.conf'
- external_pid_file = '/var/run/postgresql/16-main.pid'
- listen_addresses = '*'
- port = 26257
- max_connections = 5000
- unix_socket_directories = '/var/run/postgresql'
- ssl = off
- shared_buffers = 128MB
- dynamic_shared_memory_type = posix
- max_wal_size = 1GB
- min_wal_size = 80MB
- log_line_prefix = '%m [%p] %q%u@%d '
- log_timezone = UTC
- cluster_name = '16/main'
- datestyle = 'iso, mdy'
- timezone = UTC
- lc_messages = 'C.UTF-8'
- lc_monetary = 'C.UTF-8'
- lc_numeric = 'C.UTF-8'
- lc_time = 'C.UTF-8'
- default_text_search_config = 'pg_catalog.english'
|