Martin Čaj 0e8bcf
########################################################
Martin Čaj 0e8bcf
# Do not edit this file manually its managed by Salt ! #
Martin Čaj 0e8bcf
# Any changes needs be approved via MR in Gitlab.      #
Martin Čaj 0e8bcf
########################################################
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# -----------------------------
Martin Čaj 0e8bcf
# PostgreSQL configuration file
Martin Čaj 0e8bcf
# -----------------------------
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# This file consists of lines of the form:
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
#   name = value
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# (The "=" is optional.)  Whitespace may be used.  Comments are introduced with
Martin Čaj 0e8bcf
# "#" anywhere on a line.  The complete list of parameter names and allowed
Martin Čaj 0e8bcf
# values can be found in the PostgreSQL documentation.
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# The commented-out settings shown in this file represent the default values.
Martin Čaj 0e8bcf
# Re-commenting a setting is NOT sufficient to revert it to the default value;
Martin Čaj 0e8bcf
# you need to reload the server.
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# This file is read on server startup and when the server receives a SIGHUP
Martin Čaj 0e8bcf
# signal.  If you edit the file on a running system, you have to SIGHUP the
Martin Čaj 0e8bcf
# server for the changes to take effect, run "pg_ctl reload", or execute
Martin Čaj 0e8bcf
# "SELECT pg_reload_conf()".  Some parameters, which are marked below,
Martin Čaj 0e8bcf
# require a server shutdown and restart to take effect.
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# Any parameter can also be given as a command-line option to the server, e.g.,
Martin Čaj 0e8bcf
# "postgres -c log_connections=on".  Some parameters can be changed at run time
Martin Čaj 0e8bcf
# with the "SET" SQL command.
Martin Čaj 0e8bcf
#
Martin Čaj 0e8bcf
# Memory units:  kB = kilobytes        Time units:  ms  = milliseconds
Martin Čaj 0e8bcf
#                MB = megabytes                     s   = seconds
Martin Čaj 0e8bcf
#                GB = gigabytes                     min = minutes
Martin Čaj 0e8bcf
#                TB = terabytes                     h   = hours
Martin Čaj 0e8bcf
#                                                   d   = days
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# FILE LOCATIONS
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# The default values of these variables are driven from the -D command-line
Martin Čaj 0e8bcf
# option or PGDATA environment variable, represented here as ConfigDir.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#data_directory = 'ConfigDir'		# use data in another directory
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#hba_file = 'ConfigDir/pg_hba.conf'	# host-based authentication file
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#ident_file = 'ConfigDir/pg_ident.conf'	# ident configuration file
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# If external_pid_file is not explicitly set, no extra PID file is written.
Martin Čaj 0e8bcf
#external_pid_file = ''			# write an extra PID file
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# CONNECTIONS AND AUTHENTICATION
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Connection Settings -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# listen_addresses = 'localhost'		# what IP address(es) to listen on;
Martin Čaj 0e8bcf
					# comma-separated list of addresses;
Martin Čaj 0e8bcf
					# defaults to 'localhost'; use '*' for all
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
listen_addresses = '*'
Martin Čaj 0e8bcf
#port = 5432				# (change requires restart)
Martin Čaj 0e8bcf
max_connections = 4096			# (change requires restart)
Martin Čaj 0e8bcf
#superuser_reserved_connections = 3	# (change requires restart)
Martin Čaj 0e8bcf
#unix_socket_directories = '/var/run/postgresql, /tmp'	# comma-separated list of directories
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#unix_socket_group = ''			# (change requires restart)
Martin Čaj 0e8bcf
#unix_socket_permissions = 0777		# begin with 0 to use octal notation
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#bonjour = off				# advertise server via Bonjour
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#bonjour_name = ''			# defaults to the computer name
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - TCP Keepalives -
Martin Čaj 0e8bcf
# see "man 7 tcp" for details
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#tcp_keepalives_idle = 0		# TCP_KEEPIDLE, in seconds;
Martin Čaj 0e8bcf
					# 0 selects the system default
Martin Čaj 0e8bcf
#tcp_keepalives_interval = 0		# TCP_KEEPINTVL, in seconds;
Martin Čaj 0e8bcf
					# 0 selects the system default
Martin Čaj 0e8bcf
#tcp_keepalives_count = 0		# TCP_KEEPCNT;
Martin Čaj 0e8bcf
					# 0 selects the system default
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Authentication -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#authentication_timeout = 1min		# 1s-600s
Martin Čaj 0e8bcf
#password_encryption = md5		# md5 or scram-sha-256
Martin Čaj 0e8bcf
#db_user_namespace = off
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# GSSAPI using Kerberos
Martin Čaj 0e8bcf
#krb_server_keyfile = ''
Martin Čaj 0e8bcf
#krb_caseins_users = off
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - SSL -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#ssl = off
Martin Čaj 0e8bcf
#ssl_ca_file = ''
Martin Čaj 0e8bcf
#ssl_cert_file = 'server.crt'
Martin Čaj 0e8bcf
#ssl_crl_file = ''
Martin Čaj 0e8bcf
#ssl_key_file = 'server.key'
Martin Čaj 0e8bcf
#ssl_ciphers = 'HIGH:MEDIUM:+3DES:!aNULL' # allowed SSL ciphers
Martin Čaj 0e8bcf
#ssl_prefer_server_ciphers = on
Martin Čaj 0e8bcf
#ssl_ecdh_curve = 'prime256v1'
Martin Čaj 0e8bcf
#ssl_dh_params_file = ''
Martin Čaj 0e8bcf
#ssl_passphrase_command = ''
Martin Čaj 0e8bcf
#ssl_passphrase_command_supports_reload = off
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# RESOURCE USAGE (except WAL)
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Memory -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
shared_buffers = 12GB	 		# min 128kB
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#huge_pages = try			# on, off, or try
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#temp_buffers = 8MB			# min 800kB
Martin Čaj 0e8bcf
temp_buffers = 128MB
Martin Čaj 0e8bcf
#max_prepared_transactions = 0		# zero disables the feature
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
# Caution: it is not advisable to set max_prepared_transactions nonzero unless
Martin Čaj 0e8bcf
# you actively intend to use prepared transactions.
Martin Čaj 0e8bcf
#work_mem = 4MB				# min 64kB
Martin Čaj 0e8bcf
work_mem = 64MB
Martin Čaj 0e8bcf
#maintenance_work_mem = 64MB		# min 1MB
Martin Čaj 0e8bcf
maintenance_work_mem = 12GB
Martin Čaj 0e8bcf
#autovacuum_work_mem = -1		# min 1MB, or -1 to use maintenance_work_mem
Martin Čaj 0e8bcf
#max_stack_depth = 2MB			# min 100kB
Martin Čaj 0e8bcf
dynamic_shared_memory_type = posix	# the default is the first option
Martin Čaj 0e8bcf
					# supported by the operating system:
Martin Čaj 0e8bcf
					#   posix
Martin Čaj 0e8bcf
					#   sysv
Martin Čaj 0e8bcf
					#   windows
Martin Čaj 0e8bcf
					#   mmap
Martin Čaj 0e8bcf
					# use none to disable dynamic shared memory
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Disk -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#temp_file_limit = -1			# limits per-process temp file space
Martin Čaj 0e8bcf
					# in kB, or -1 for no limit
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Kernel Resources -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#max_files_per_process = 1000		# min 25
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Cost-Based Vacuum Delay -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#vacuum_cost_delay = 0			# 0-100 milliseconds
Martin Čaj 0e8bcf
#vacuum_cost_page_hit = 1		# 0-10000 credits
Martin Čaj 0e8bcf
#vacuum_cost_page_miss = 10		# 0-10000 credits
Martin Čaj 0e8bcf
#vacuum_cost_page_dirty = 20		# 0-10000 credits
Martin Čaj 0e8bcf
#vacuum_cost_limit = 200		# 1-10000 credits
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Background Writer -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#bgwriter_delay = 200ms			# 10-10000ms between rounds
Martin Čaj 0e8bcf
#bgwriter_lru_maxpages = 100		# max buffers written/round, 0 disables
Martin Čaj 0e8bcf
#bgwriter_lru_multiplier = 2.0		# 0-10.0 multiplier on buffers scanned/round
Martin Čaj 0e8bcf
#bgwriter_flush_after = 512kB		# measured in pages, 0 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Asynchronous Behavior -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#effective_io_concurrency = 1		# 1-1000; 0 disables prefetching
Martin Čaj 0e8bcf
#max_worker_processes = 8		# (change requires restart)
Martin Čaj 0e8bcf
#max_parallel_maintenance_workers = 2	# taken from max_parallel_workers
Martin Čaj 0e8bcf
#max_parallel_workers_per_gather = 2	# taken from max_parallel_workers
Martin Čaj 0e8bcf
#parallel_leader_participation = on
Martin Čaj 0e8bcf
#max_parallel_workers = 8		# maximum number of max_worker_processes that
Martin Čaj 0e8bcf
					# can be used in parallel operations
Martin Čaj 0e8bcf
#old_snapshot_threshold = -1		# 1min-60d; -1 disables; 0 is immediate
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#backend_flush_after = 0		# measured in pages, 0 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# WRITE-AHEAD LOG
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Settings -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#wal_level = replica			# minimal, replica, or logical
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#fsync = on				# flush data to disk for crash safety
Martin Čaj 0e8bcf
					# (turning this off can cause
Martin Čaj 0e8bcf
					# unrecoverable data corruption)
Martin Čaj 0e8bcf
#synchronous_commit = on		# synchronization level;
Martin Čaj 0e8bcf
					# off, local, remote_write, remote_apply, or on
Martin Čaj 0e8bcf
synchronous_commit = off
Martin Čaj 0e8bcf
#wal_sync_method = fsync		# the default is the first option
Martin Čaj 0e8bcf
					# supported by the operating system:
Martin Čaj 0e8bcf
					#   open_datasync
Martin Čaj 0e8bcf
					#   fdatasync (default on Linux)
Martin Čaj 0e8bcf
					#   fsync
Martin Čaj 0e8bcf
					#   fsync_writethrough
Martin Čaj 0e8bcf
					#   open_sync
Martin Čaj 0e8bcf
#full_page_writes = on			# recover from partial page writes
Martin Čaj 0e8bcf
#wal_compression = off			# enable compression of full-page writes
Martin Čaj 0e8bcf
#wal_log_hints = off			# also do full page writes of non-critical updates
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#wal_buffers = -1			# min 32kB, -1 sets based on shared_buffers
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#wal_writer_delay = 200ms		# 1-10000 milliseconds
Martin Čaj 0e8bcf
#wal_writer_flush_after = 1MB		# measured in pages, 0 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#commit_delay = 0			# range 0-100000, in microseconds
Martin Čaj 0e8bcf
#commit_siblings = 5			# range 1-1000
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Checkpoints -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#checkpoint_timeout = 5min		# range 30s-1d
Martin Čaj 0e8bcf
checkpoint_timeout = 15min
Bernhard M. Wiedemann e1ea86
# wal needs to be large enough for mirrordb2 replication to catch up after reboot
Bernhard M. Wiedemann e1ea86
max_wal_size = 20GB
Martin Čaj 0e8bcf
min_wal_size = 80MB
Christian Boltz 51dbf4
checkpoint_completion_target = 0.9	# checkpoint target duration, 0.0 - 1.0
Martin Čaj 0e8bcf
#checkpoint_flush_after = 256kB		# measured in pages, 0 disables
Martin Čaj 0e8bcf
#checkpoint_warning = 30s		# 0 disables
Martin Čaj 0e8bcf
checkpoint_warning = 1h
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Archiving -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#archive_mode = off		# enables archiving; off, on, or always
Martin Čaj 0e8bcf
				# (change requires restart)
Martin Čaj 0e8bcf
archive_mode = on
Martin Čaj 0e8bcf
#archive_command = ''		# command to use to archive a logfile segment
Martin Čaj 0e8bcf
				# placeholders: %p = path of file to archive
Martin Čaj 0e8bcf
				#               %f = file name only
Martin Čaj 0e8bcf
				# e.g. 'test ! -f /mnt/server/archivedir/%f && cp %p /mnt/server/archivedir/%f'
Martin Čaj 0e8bcf
archive_command = '/bin/true'
Martin Čaj 0e8bcf
#archive_timeout = 0		# force a logfile segment switch after this
Martin Čaj 0e8bcf
				# number of seconds; 0 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# REPLICATION
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Sending Servers -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# Set these on the master and on any standby that will send replication data.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#max_wal_senders = 10		# max number of walsender processes
Martin Čaj 0e8bcf
				# (change requires restart)
Martin Čaj 0e8bcf
#wal_keep_segments = 0		# in logfile segments; 0 disables
Martin Čaj 0e8bcf
#wal_sender_timeout = 60s	# in milliseconds; 0 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#max_replication_slots = 10	# max number of replication slots
Martin Čaj 0e8bcf
				# (change requires restart)
Martin Čaj 0e8bcf
#track_commit_timestamp = off	# collect timestamp of transaction commit
Martin Čaj 0e8bcf
				# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Master Server -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These settings are ignored on a standby server.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#synchronous_standby_names = ''	# standby servers that provide sync rep
Martin Čaj 0e8bcf
				# method to choose sync standbys, number of sync standbys,
Martin Čaj 0e8bcf
				# and comma-separated list of application_name
Martin Čaj 0e8bcf
				# from standby(s); '*' = all
Martin Čaj 0e8bcf
#vacuum_defer_cleanup_age = 0	# number of xacts by which cleanup is delayed
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Standby Servers -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These settings are ignored on a master server.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#hot_standby = on			# "off" disallows queries during recovery
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#max_standby_archive_delay = 30s	# max delay before canceling queries
Martin Čaj 0e8bcf
					# when reading WAL from archive;
Martin Čaj 0e8bcf
					# -1 allows indefinite delay
Martin Čaj 0e8bcf
#max_standby_streaming_delay = 30s	# max delay before canceling queries
Martin Čaj 0e8bcf
					# when reading streaming WAL;
Martin Čaj 0e8bcf
					# -1 allows indefinite delay
Martin Čaj 0e8bcf
#wal_receiver_status_interval = 10s	# send replies at least this often
Martin Čaj 0e8bcf
					# 0 disables
Martin Čaj 0e8bcf
#hot_standby_feedback = off		# send info from standby to prevent
Martin Čaj 0e8bcf
					# query conflicts
Martin Čaj 0e8bcf
#wal_receiver_timeout = 60s		# time that receiver waits for
Martin Čaj 0e8bcf
					# communication from master
Martin Čaj 0e8bcf
					# in milliseconds; 0 disables
Martin Čaj 0e8bcf
#wal_retrieve_retry_interval = 5s	# time to wait before retrying to
Martin Čaj 0e8bcf
					# retrieve WAL after a failed attempt
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Subscribers -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These settings are ignored on a publisher.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#max_logical_replication_workers = 4	# taken from max_worker_processes
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#max_sync_workers_per_subscription = 2	# taken from max_logical_replication_workers
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# QUERY TUNING
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Planner Method Configuration -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#enable_bitmapscan = on
Martin Čaj 0e8bcf
#enable_hashagg = on
Martin Čaj 0e8bcf
#enable_hashjoin = on
Martin Čaj 0e8bcf
#enable_indexscan = on
Martin Čaj 0e8bcf
#enable_indexonlyscan = on
Martin Čaj 0e8bcf
#enable_material = on
Martin Čaj 0e8bcf
#enable_mergejoin = on
Martin Čaj 0e8bcf
#enable_nestloop = on
Martin Čaj 0e8bcf
#enable_parallel_append = on
Martin Čaj 0e8bcf
#enable_seqscan = on
Martin Čaj 0e8bcf
#enable_sort = on
Martin Čaj 0e8bcf
#enable_tidscan = on
Christian Boltz 51dbf4
enable_partitionwise_join = on
Christian Boltz 51dbf4
enable_partitionwise_aggregate = on
Martin Čaj 0e8bcf
#enable_parallel_hash = on
Martin Čaj 0e8bcf
#enable_partition_pruning = on
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Planner Cost Constants -
Martin Čaj 0e8bcf
Christian Boltz 51dbf4
seq_page_cost = 1.0			# measured on an arbitrary scale
Christian Boltz 51dbf4
random_page_cost = 1.0			# same scale as above
Martin Čaj 0e8bcf
#cpu_tuple_cost = 0.01			# same scale as above
Martin Čaj 0e8bcf
#cpu_index_tuple_cost = 0.005		# same scale as above
Martin Čaj 0e8bcf
#cpu_operator_cost = 0.0025		# same scale as above
Martin Čaj 0e8bcf
#parallel_tuple_cost = 0.1		# same scale as above
Martin Čaj 0e8bcf
#parallel_setup_cost = 1000.0	# same scale as above
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#jit_above_cost = 100000		# perform JIT compilation if available
Martin Čaj 0e8bcf
					# and query more expensive than this;
Martin Čaj 0e8bcf
					# -1 disables
Martin Čaj 0e8bcf
#jit_inline_above_cost = 500000		# inline small functions if query is
Martin Čaj 0e8bcf
					# more expensive than this; -1 disables
Martin Čaj 0e8bcf
#jit_optimize_above_cost = 500000	# use expensive JIT optimizations if
Martin Čaj 0e8bcf
					# query is more expensive than this;
Martin Čaj 0e8bcf
					# -1 disables
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#min_parallel_table_scan_size = 8MB
Martin Čaj 0e8bcf
#min_parallel_index_scan_size = 512kB
Martin Čaj 0e8bcf
#effective_cache_size = 4GB
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Genetic Query Optimizer -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#geqo = on
Martin Čaj 0e8bcf
#geqo_threshold = 12
Martin Čaj 0e8bcf
#geqo_effort = 5			# range 1-10
Martin Čaj 0e8bcf
#geqo_pool_size = 0			# selects default based on effort
Martin Čaj 0e8bcf
#geqo_generations = 0			# selects default based on effort
Martin Čaj 0e8bcf
#geqo_selection_bias = 2.0		# range 1.5-2.0
Martin Čaj 0e8bcf
#geqo_seed = 0.0			# range 0.0-1.0
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Other Planner Options -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#default_statistics_target = 100	# range 1-10000
Martin Čaj 0e8bcf
#constraint_exclusion = partition	# on, off, or partition
Martin Čaj 0e8bcf
#cursor_tuple_fraction = 0.1		# range 0.0-1.0
Martin Čaj 0e8bcf
#from_collapse_limit = 8
Martin Čaj 0e8bcf
#join_collapse_limit = 8		# 1 disables collapsing of explicit
Martin Čaj 0e8bcf
					# JOIN clauses
Martin Čaj 0e8bcf
#force_parallel_mode = off
Martin Čaj 0e8bcf
#jit = off				# allow JIT compilation
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# REPORTING AND LOGGING
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Where to Log -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
log_destination = 'stderr'		# Valid values are combinations of
Martin Čaj 0e8bcf
					# stderr, csvlog, syslog, and eventlog,
Martin Čaj 0e8bcf
					# depending on platform.  csvlog
Martin Čaj 0e8bcf
					# requires logging_collector to be on.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# This is used when logging to stderr:
Martin Čaj 0e8bcf
logging_collector = on			# Enable capturing of stderr and csvlog
Martin Čaj 0e8bcf
					# into log files. Required to be on for
Martin Čaj 0e8bcf
					# csvlogs.
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These are only used if logging_collector is on:
Martin Čaj 0e8bcf
#log_directory = 'log'			# directory where log files are written,
Martin Čaj 0e8bcf
					# can be absolute or relative to PGDATA
Martin Čaj 0e8bcf
#log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'	# log file name pattern,
Martin Čaj 0e8bcf
					# can include strftime() escapes
Martin Čaj 0e8bcf
log_filename = 'postgresql-%Y-%m-%d.log'
Martin Čaj 0e8bcf
#log_file_mode = 0600			# creation mode for log files,
Martin Čaj 0e8bcf
					# begin with 0 to use octal notation
Martin Čaj 0e8bcf
#log_truncate_on_rotation = off		# If on, an existing log file with the
Martin Čaj 0e8bcf
					# same name as the new log file will be
Martin Čaj 0e8bcf
					# truncated rather than appended to.
Martin Čaj 0e8bcf
					# But such truncation only occurs on
Martin Čaj 0e8bcf
					# time-driven rotation, not on restarts
Martin Čaj 0e8bcf
					# or size-driven rotation.  Default is
Martin Čaj 0e8bcf
					# off, meaning append to existing files
Martin Čaj 0e8bcf
					# in all cases.
Martin Čaj 0e8bcf
#log_rotation_age = 1d			# Automatic rotation of logfiles will
Martin Čaj 0e8bcf
					# happen after that time.  0 disables.
Martin Čaj 0e8bcf
#log_rotation_size = 10MB		# Automatic rotation of logfiles will
Martin Čaj 0e8bcf
					# happen after that much log output.
Martin Čaj 0e8bcf
					# 0 disables.
Martin Čaj 0e8bcf
log_rotation_size = 0
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These are relevant when logging to syslog:
Martin Čaj 0e8bcf
#syslog_facility = 'LOCAL0'
Martin Čaj 0e8bcf
#syslog_ident = 'postgres'
Martin Čaj 0e8bcf
#syslog_sequence_numbers = on
Martin Čaj 0e8bcf
#syslog_split_messages = on
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# This is only relevant when logging to eventlog (win32):
Martin Čaj 0e8bcf
# (change requires restart)
Martin Čaj 0e8bcf
#event_source = 'PostgreSQL'
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - When to Log -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#client_min_messages = notice		# values in order of decreasing detail:
Martin Čaj 0e8bcf
					#   debug5
Martin Čaj 0e8bcf
					#   debug4
Martin Čaj 0e8bcf
					#   debug3
Martin Čaj 0e8bcf
					#   debug2
Martin Čaj 0e8bcf
					#   debug1
Martin Čaj 0e8bcf
					#   log
Martin Čaj 0e8bcf
					#   notice
Martin Čaj 0e8bcf
					#   warning
Martin Čaj 0e8bcf
					#   error
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#log_min_messages = warning		# values in order of decreasing detail:
Martin Čaj 0e8bcf
					#   debug5
Martin Čaj 0e8bcf
					#   debug4
Martin Čaj 0e8bcf
					#   debug3
Martin Čaj 0e8bcf
					#   debug2
Martin Čaj 0e8bcf
					#   debug1
Martin Čaj 0e8bcf
					#   info
Martin Čaj 0e8bcf
					#   notice
Martin Čaj 0e8bcf
					#   warning
Martin Čaj 0e8bcf
					#   error
Martin Čaj 0e8bcf
					#   log
Martin Čaj 0e8bcf
					#   fatal
Martin Čaj 0e8bcf
					#   panic
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#log_min_error_statement = error	# values in order of decreasing detail:
Martin Čaj 0e8bcf
					#   debug5
Martin Čaj 0e8bcf
					#   debug4
Martin Čaj 0e8bcf
					#   debug3
Martin Čaj 0e8bcf
					#   debug2
Martin Čaj 0e8bcf
					#   debug1
Martin Čaj 0e8bcf
					#   info
Martin Čaj 0e8bcf
					#   notice
Martin Čaj 0e8bcf
					#   warning
Martin Čaj 0e8bcf
					#   error
Martin Čaj 0e8bcf
					#   log
Martin Čaj 0e8bcf
					#   fatal
Martin Čaj 0e8bcf
					#   panic (effectively off)
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#log_min_duration_statement = -1	# -1 is disabled, 0 logs all statements
Martin Čaj 0e8bcf
					# and their durations, > 0 logs only
Martin Čaj 0e8bcf
					# statements running at least this number
Martin Čaj 0e8bcf
					# of milliseconds
Martin Čaj 0e8bcf
log_min_duration_statement = 2000
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - What to Log -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#debug_print_parse = off
Martin Čaj 0e8bcf
#debug_print_rewritten = off
Martin Čaj 0e8bcf
#debug_print_plan = off
Martin Čaj 0e8bcf
#debug_pretty_print = on
Martin Čaj 0e8bcf
#log_checkpoints = off
Martin Čaj 0e8bcf
log_checkpoints = on
Martin Čaj 0e8bcf
#log_connections = off
Martin Čaj 0e8bcf
log_connections = on
Martin Čaj 0e8bcf
#log_disconnections = off
Martin Čaj 0e8bcf
log_disconnections = on
Martin Čaj 0e8bcf
#log_duration = off
Martin Čaj 0e8bcf
#log_error_verbosity = default		# terse, default, or verbose messages
Martin Čaj 0e8bcf
#log_hostname = off
Martin Čaj 0e8bcf
#log_line_prefix = '%m [%p] '		# special values:
Martin Čaj 0e8bcf
#log_line_prefix = '%m %d %u [%p]'
Martin Čaj 0e8bcf
log_line_prefix = '%m [%p]: [%l-1] db=%d,user=%u '
Martin Čaj 0e8bcf
					#   %a = application name
Martin Čaj 0e8bcf
					#   %u = user name
Martin Čaj 0e8bcf
					#   %d = database name
Martin Čaj 0e8bcf
					#   %r = remote host and port
Martin Čaj 0e8bcf
					#   %h = remote host
Martin Čaj 0e8bcf
					#   %p = process ID
Martin Čaj 0e8bcf
					#   %t = timestamp without milliseconds
Martin Čaj 0e8bcf
					#   %m = timestamp with milliseconds
Martin Čaj 0e8bcf
					#   %n = timestamp with milliseconds (as a Unix epoch)
Martin Čaj 0e8bcf
					#   %i = command tag
Martin Čaj 0e8bcf
					#   %e = SQL state
Martin Čaj 0e8bcf
					#   %c = session ID
Martin Čaj 0e8bcf
					#   %l = session line number
Martin Čaj 0e8bcf
					#   %s = session start timestamp
Martin Čaj 0e8bcf
					#   %v = virtual transaction ID
Martin Čaj 0e8bcf
					#   %x = transaction ID (0 if none)
Martin Čaj 0e8bcf
					#   %q = stop here in non-session
Martin Čaj 0e8bcf
					#        processes
Martin Čaj 0e8bcf
					#   %% = '%'
Martin Čaj 0e8bcf
					# e.g. '<%u%%%d> '
Martin Čaj 0e8bcf
#log_lock_waits = off			# log lock waits >= deadlock_timeout
Martin Čaj 0e8bcf
log_lock_waits = on
Martin Čaj 0e8bcf
#log_statement = 'none'			# none, ddl, mod, all
Martin Čaj 0e8bcf
#log_replication_commands = off
Martin Čaj 0e8bcf
#log_temp_files = -1			# log temporary files equal or larger
Martin Čaj 0e8bcf
					# than the specified size in kilobytes;
Martin Čaj 0e8bcf
					# -1 disables, 0 logs all temp files
Martin Čaj 0e8bcf
log_timezone = 'UTC'
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# PROCESS TITLE
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#cluster_name = ''			# added to process titles if nonempty
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#update_process_title = on
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# STATISTICS
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Query and Index Statistics Collector -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#track_activities = on
Martin Čaj 0e8bcf
#track_counts = on
Martin Čaj 0e8bcf
#track_io_timing = off
Martin Čaj 0e8bcf
#track_functions = none			# none, pl, all
Christian Boltz 51dbf4
track_activity_query_size = 2048	# (change requires restart)
Christian Boltz 51dbf4
pg_stat_statements.max = 1000
Christian Boltz 51dbf4
pg_stat_statements.track = all
Martin Čaj 0e8bcf
#stats_temp_directory = 'pg_stat_tmp'
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Monitoring -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#log_parser_stats = off
Martin Čaj 0e8bcf
#log_planner_stats = off
Martin Čaj 0e8bcf
#log_executor_stats = off
Martin Čaj 0e8bcf
#log_statement_stats = off
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# AUTOVACUUM
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#autovacuum = on			# Enable autovacuum subprocess?  'on'
Martin Čaj 0e8bcf
					# requires track_counts to also be on.
Martin Čaj 0e8bcf
#log_autovacuum_min_duration = -1	# -1 disables, 0 logs all actions and
Martin Čaj 0e8bcf
					# their durations, > 0 logs only
Martin Čaj 0e8bcf
					# actions running at least this number
Martin Čaj 0e8bcf
					# of milliseconds.
Martin Čaj 0e8bcf
log_autovacuum_min_duration = 0
Martin Čaj 0e8bcf
#autovacuum_max_workers = 3		# max number of autovacuum subprocesses
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
autovacuum_max_workers = 10
Martin Čaj 0e8bcf
#autovacuum_naptime = 1min		# time between autovacuum runs
Martin Čaj 0e8bcf
#autovacuum_vacuum_threshold = 50	# min number of row updates before
Martin Čaj 0e8bcf
					# vacuum
Martin Čaj 0e8bcf
autovacuum_vacuum_threshold = 300
Martin Čaj 0e8bcf
#autovacuum_analyze_threshold = 50	# min number of row updates before
Martin Čaj 0e8bcf
					# analyze
Martin Čaj 0e8bcf
autovacuum_analyze_threshold = 500
Martin Čaj 0e8bcf
#autovacuum_vacuum_scale_factor = 0.2	# fraction of table size before vacuum
Martin Čaj 0e8bcf
autovacuum_analyze_scale_factor = 0.01
Martin Čaj 0e8bcf
#autovacuum_analyze_scale_factor = 0.1	# fraction of table size before analyze
Martin Čaj 0e8bcf
autovacuum_vacuum_scale_factor = 0.03
Martin Čaj 0e8bcf
#autovacuum_freeze_max_age = 200000000	# maximum XID age before forced vacuum
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#autovacuum_multixact_freeze_max_age = 400000000	# maximum multixact age
Martin Čaj 0e8bcf
					# before forced vacuum
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#autovacuum_vacuum_cost_delay = 20ms	# default vacuum cost delay for
Martin Čaj 0e8bcf
					# autovacuum, in milliseconds;
Martin Čaj 0e8bcf
					# -1 means use vacuum_cost_delay
Martin Čaj 0e8bcf
#autovacuum_vacuum_cost_limit = -1	# default vacuum cost limit for
Martin Čaj 0e8bcf
					# autovacuum, -1 means use
Martin Čaj 0e8bcf
					# vacuum_cost_limit
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# CLIENT CONNECTION DEFAULTS
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Statement Behavior -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#search_path = '"$user", public'	# schema names
Martin Čaj 0e8bcf
#row_security = on
Martin Čaj 0e8bcf
#default_tablespace = ''		# a tablespace name, '' uses the default
Martin Čaj 0e8bcf
#temp_tablespaces = ''			# a list of tablespace names, '' uses
Martin Čaj 0e8bcf
					# only default tablespace
Martin Čaj 0e8bcf
#check_function_bodies = on
Martin Čaj 0e8bcf
#default_transaction_isolation = 'read committed'
Martin Čaj 0e8bcf
#default_transaction_read_only = off
Martin Čaj 0e8bcf
#default_transaction_deferrable = off
Martin Čaj 0e8bcf
#session_replication_role = 'origin'
Martin Čaj 0e8bcf
#statement_timeout = 0			# in milliseconds, 0 is disabled
Martin Čaj 0e8bcf
#lock_timeout = 0			# in milliseconds, 0 is disabled
Martin Čaj 0e8bcf
#idle_in_transaction_session_timeout = 0	# in milliseconds, 0 is disabled
Martin Čaj 0e8bcf
#vacuum_freeze_min_age = 50000000
Martin Čaj 0e8bcf
#vacuum_freeze_table_age = 150000000
Martin Čaj 0e8bcf
#vacuum_multixact_freeze_min_age = 5000000
Martin Čaj 0e8bcf
#vacuum_multixact_freeze_table_age = 150000000
Martin Čaj 0e8bcf
#vacuum_cleanup_index_scale_factor = 0.1	# fraction of total number of tuples
Martin Čaj 0e8bcf
						# before index cleanup, 0 always performs
Martin Čaj 0e8bcf
						# index cleanup
Martin Čaj 0e8bcf
#bytea_output = 'hex'			# hex, escape
Martin Čaj 0e8bcf
#xmlbinary = 'base64'
Martin Čaj 0e8bcf
#xmloption = 'content'
Martin Čaj 0e8bcf
#gin_fuzzy_search_limit = 0
Martin Čaj 0e8bcf
#gin_pending_list_limit = 4MB
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Locale and Formatting -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
datestyle = 'iso, ymd'
Martin Čaj 0e8bcf
#intervalstyle = 'postgres'
Martin Čaj 0e8bcf
timezone = 'UTC'
Martin Čaj 0e8bcf
#timezone_abbreviations = 'Default'     # Select the set of available time zone
Martin Čaj 0e8bcf
					# abbreviations.  Currently, there are
Martin Čaj 0e8bcf
					#   Default
Martin Čaj 0e8bcf
					#   Australia (historical usage)
Martin Čaj 0e8bcf
					#   India
Martin Čaj 0e8bcf
					# You can create your own file in
Martin Čaj 0e8bcf
					# share/timezonesets/.
Martin Čaj 0e8bcf
#extra_float_digits = 0			# min -15, max 3
Martin Čaj 0e8bcf
#client_encoding = sql_ascii		# actually, defaults to database
Martin Čaj 0e8bcf
					# encoding
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These settings are initialized by initdb, but they can be changed.
Martin Čaj 0e8bcf
lc_messages = 'en_US.UTF-8'			# locale for system error message
Martin Čaj 0e8bcf
					# strings
Martin Čaj 0e8bcf
lc_monetary = 'en_US.UTF-8'			# locale for monetary formatting
Martin Čaj 0e8bcf
lc_numeric = 'en_US.UTF-8'			# locale for number formatting
Martin Čaj 0e8bcf
lc_time = 'en_US.UTF-8'				# locale for time formatting
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# default configuration for text search
Martin Čaj 0e8bcf
default_text_search_config = 'pg_catalog.english'
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Shared Library Preloading -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#shared_preload_libraries = ''	# (change requires restart)
Christian Boltz 51dbf4
shared_preload_libraries = 'pg_stat_statements'
Martin Čaj 0e8bcf
#local_preload_libraries = ''
Martin Čaj 0e8bcf
#session_preload_libraries = ''
Martin Čaj 0e8bcf
#jit_provider = 'llvmjit'		# JIT library to use
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Other Defaults -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#dynamic_library_path = '$libdir'
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# LOCK MANAGEMENT
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#deadlock_timeout = 1s
Martin Čaj 0e8bcf
deadlock_timeout = 30s
Martin Čaj 0e8bcf
#max_locks_per_transaction = 64		# min 10
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#max_pred_locks_per_transaction = 64	# min 10
Martin Čaj 0e8bcf
					# (change requires restart)
Martin Čaj 0e8bcf
#max_pred_locks_per_relation = -2	# negative values mean
Martin Čaj 0e8bcf
					# (max_pred_locks_per_transaction
Martin Čaj 0e8bcf
					#  / -max_pred_locks_per_relation) - 1
Martin Čaj 0e8bcf
#max_pred_locks_per_page = 2            # min 0
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# VERSION AND PLATFORM COMPATIBILITY
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Previous PostgreSQL Versions -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#array_nulls = on
Martin Čaj 0e8bcf
#backslash_quote = safe_encoding	# on, off, or safe_encoding
Martin Čaj 0e8bcf
#default_with_oids = off
Martin Čaj 0e8bcf
#escape_string_warning = on
Martin Čaj 0e8bcf
#lo_compat_privileges = off
Martin Čaj 0e8bcf
#operator_precedence_warning = off
Martin Čaj 0e8bcf
#quote_all_identifiers = off
Martin Čaj 0e8bcf
#standard_conforming_strings = on
Martin Čaj 0e8bcf
#synchronize_seqscans = on
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# - Other Platforms and Clients -
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#transform_null_equals = off
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# ERROR HANDLING
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#exit_on_error = off			# terminate session on any error?
Martin Čaj 0e8bcf
#restart_after_crash = on		# reinitialize after backend crash?
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# CONFIG FILE INCLUDES
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# These options allow settings to be loaded from files other than the
Martin Čaj 0e8bcf
# default postgresql.conf.
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#include_dir = 'conf.d'			# include files ending in '.conf' from
Martin Čaj 0e8bcf
					# directory 'conf.d'
Martin Čaj 0e8bcf
#include_if_exists = 'exists.conf'	# include file only if it exists
Martin Čaj 0e8bcf
#include = 'special.conf'		# include file
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
# CUSTOMIZED OPTIONS
Martin Čaj 0e8bcf
#------------------------------------------------------------------------------
Martin Čaj 0e8bcf
Martin Čaj 0e8bcf
# Add settings for extensions here