File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ authentication_timeout = {{postgresql_authentication_timeout}} # 1s-600s
80
80
ssl = {{'on' if postgresql_ssl else 'off'}} # (change requires restart)
81
81
ssl_ciphers = '{{postgresql_ssl_ciphers|join(':')}}' # allowed SSL ciphers
82
82
# (change requires restart)
83
- ssl_prefer_server_ciphers = {{postgresql_ssl_prefer_server_ciphers}} # (change requires restart)
83
+ ssl_prefer_server_ciphers = {{ 'on' if postgresql_ssl_prefer_server_ciphers else 'off' }} # (change requires restart)
84
84
ssl_ecdh_curve = '{{postgresql_ssl_ecdh_curve}}' # (change requires restart)
85
85
ssl_cert_file = '{{postgresql_ssl_cert_file}}' # (change requires restart)
86
86
ssl_key_file = '{{postgresql_ssl_key_file}}' # (change requires restart)
@@ -191,7 +191,7 @@ wal_sync_method = {{postgresql_wal_sync_method}} # the default is the first opt
191
191
# open_sync
192
192
full_page_writes = {{'on' if postgresql_full_page_writes else 'off'}} # recover from partial page writes
193
193
wal_compression = {{ 'on' if postgresql_wal_compression else 'off' }}
194
- wal_log_hints = {{postgresql_wal_log_hints}} # also do full page writes of non-critical updates
194
+ wal_log_hints = {{ 'on' if postgresql_wal_log_hints else 'off' }} # also do full page writes of non-critical updates
195
195
# (change requires restart)
196
196
wal_buffers = {{postgresql_wal_buffers}} # min 32kB, -1 sets based on shared_buffers
197
197
# (change requires restart)
You can’t perform that action at this time.
0 commit comments