50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
listen_addresses = '*'
|
|
max_connections = 100
|
|
|
|
shared_buffers = 128MB
|
|
|
|
max_wal_size = 1GB
|
|
min_wal_size = 80MB
|
|
|
|
log_timezone = 'Etc/UTC'
|
|
|
|
datestyle = 'iso, mdy'
|
|
|
|
timezone = 'Etc/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_collector = on
|
|
log_directory = 'log'
|
|
log_filename = 'slow.log'
|
|
log_rotation_age = 1d
|
|
log_rotation_size = 10MB
|
|
log_min_messages = info
|
|
|
|
log_min_duration_statement = 1000
|
|
log_checkpoints = on
|
|
log_connections = on
|
|
log_disconnections = on
|
|
log_duration = on
|
|
log_line_prefix = '%m' |