This commit is contained in:
devonh
2026-09-15 17:19:08 +00:00
parent 39f561bd87
commit c8bfaa804d
114 changed files with 134 additions and 115 deletions
+7 -2
View File
@@ -38,7 +38,7 @@
const path_to_root = "";
const default_light_theme = "light";
const default_dark_theme = "navy";
window.path_to_searchindex_js = "searchindex-e1b1a2b1.js";
window.path_to_searchindex_js = "searchindex-862788cc.js";
</script>
<!-- Start loading toc.js asap -->
<script src="toc-64310643.js"></script>
@@ -2092,7 +2092,7 @@ v1.61.0.</p>
<tr><td>v1.85.0 – v1.91.2</td><td>v1.83.0</td></tr>
<tr><td>v1.92.0 – v1.97.0</td><td>v1.90.0</td></tr>
<tr><td>v1.98.0 – v1.105.0</td><td>v1.96.0</td></tr>
<tr><td>v1.105.1 – v1.160.0</td><td>v1.100.0</td></tr>
<tr><td>v1.105.1 – v1.161.0</td><td>v1.100.0</td></tr>
</tbody>
</table>
</div>
@@ -8271,6 +8271,7 @@ It’s recommended to leave this option as it is. We expect to remove this optio
<p><em>Changed in Synapse 1.84.0: Added use_tls, certificate_file, private_key_file, ca_file and ca_path attributes</em></p>
<p><em>Changed in Synapse 1.85.0: Added path option to use a local Unix socket</em></p>
<p><em>Changed in Synapse 1.116.0: Added password_path</em></p>
<p><em>Changed in Synapse 1.162.0: Added username</em></p>
<p>This setting has the following sub-options:</p>
<ul>
<li>
@@ -8286,6 +8287,9 @@ It’s recommended to leave this option as it is. We expect to remove this optio
<p><code>path</code> (string): The full path to a local Unix socket file. <strong>If this is used, <code>host</code> and <code>port</code> are ignored.</strong> Defaults to <code>"/tmp/redis.sock"</code>.</p>
</li>
<li>
<p><code>username</code> (string|null): Optional username if configured on the Redis instance (Redis 6+ ACL authentication). Requires <code>password</code> (or <code>password_path</code>) to also be set. Defaults to <code>null</code>.</p>
</li>
<li>
<p><code>password</code> (string|null): Optional password if configured on the Redis instance. Defaults to <code>null</code>.</p>
</li>
<li>
@@ -8315,6 +8319,7 @@ It’s recommended to leave this option as it is. We expect to remove this optio
enabled: true
host: localhost
port: 6379
username: &lt;username&gt;
password_path: &lt;path_to_the_password_file&gt;
dbid: &lt;dbid&gt;
</code></pre>