We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b86ce82 commit b5c57adCopy full SHA for b5c57ad
roles/icingadb_redis/templates/icingadb-redis.conf.j2
@@ -6,11 +6,11 @@ bind {% for host in icingadb_redis_binds %}
6
{% endfor %}
7
8
protected-mode {{ icingadb_redis_protected_mode | string }}
9
-{% if icingadb_redis_tls is defined %}
10
-port: 0
11
-tls-port: {{ icingadb_redis_tls_port | default(icingadb_redis_port) }}
+{% if icingadb_redis_tls | default(false) %}
+port 0
+tls-port {{ icingadb_redis_tls_port | default(icingadb_redis_port) }}
12
{% else %}
13
-port: {{ icingadb_redis_port }}
+port {{ icingadb_redis_port }}
14
{% endif %}
15
tcp-backlog {{ icingadb_redis_tcp_backlog }}
16
timeout {{ icingadb_redis_timeout }}
0 commit comments