diff options
Diffstat (limited to 'develop/print.html')
-rw-r--r-- | develop/print.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/develop/print.html b/develop/print.html index e0fef13d32..446576ca01 100644 --- a/develop/print.html +++ b/develop/print.html @@ -3994,13 +3994,13 @@ connection pool. For a reference to valid arguments, see:</p> <p>For more information on using Synapse with Postgres, see <a href="usage/configuration/../../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: @@ -4401,10 +4401,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> |