diff options
author | anoadragon453 <anoadragon453@users.noreply.github.com> | 2022-05-18 17:25:14 +0000 |
---|---|---|
committer | anoadragon453 <anoadragon453@users.noreply.github.com> | 2022-05-18 17:25:14 +0000 |
commit | fc2f7819e13e249638c971393b382d46aae13aa5 (patch) | |
tree | 14143e70c1e7b49d975c14e8b9f6e4f7555ea2c1 /develop/usage/configuration/config_documentation.html | |
parent | deploy: 3d8839c30c96b49588196c60e2bbf056ed6465eb (diff) | |
download | synapse-fc2f7819e13e249638c971393b382d46aae13aa5.tar.xz |
deploy: 0fce474a4019b441940b6e12ac8a50ffac09727e
Diffstat (limited to '')
-rw-r--r-- | develop/usage/configuration/config_documentation.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/develop/usage/configuration/config_documentation.html b/develop/usage/configuration/config_documentation.html index 0be258731e..85b9520d5c 100644 --- a/develop/usage/configuration/config_documentation.html +++ b/develop/usage/configuration/config_documentation.html @@ -1123,13 +1123,13 @@ connection pool. For a reference to valid arguments, see:</p> <p>For more information on using Synapse with Postgres, see <a href="../../postgres.html">here</a>.</p> <p>Example SQLite configuration:</p> -<pre><code>database: +<pre><code class="language-yaml">database: name: sqlite3 args: database: /path/to/homeserver.db </code></pre> <p>Example Postgres configuration:</p> -<pre><code>database: +<pre><code class="language-yaml">database: name: psycopg2 txn_limit: 10000 args: @@ -1530,10 +1530,10 @@ using quality value syntax (;q=). '*' translates to any language.</p> <p>Defaults to "en".</p> <p>Example configuration:</p> <pre><code class="language-yaml"> url_preview_accept_language: - - en-UK - - en-US;q=0.9 - - fr;q=0.8 - - *;q=0.7 + - 'en-UK' + - 'en-US;q=0.9' + - 'fr;q=0.8' + - '*;q=0.7' </code></pre> <hr /> <p>Config option: <code>oembed</code></p> |