diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-19 11:46:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-19 11:46:29 +0100 |
| commit | e82e37ce6dffe2796b0fae63d893ad637c2be37b (patch) | |
| tree | 49689668e8de24b0a2d244b227467da4db5be22d /docs/admin/engines | |
| parent | 55737a219b0c91882a7d512312cc8f545108f8e8 (diff) | |
| parent | 1dae0c0be09d5c9e287bdea6aa5bf7ec4f4782ec (diff) | |
Merge pull request #515 from return42/doc-theme
Various modification of the documentation and the theme sphinx-theme
Diffstat (limited to 'docs/admin/engines')
| -rw-r--r-- | docs/admin/engines/settings.rst | 4 | ||||
| -rw-r--r-- | docs/admin/engines/sql-engines.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/admin/engines/settings.rst b/docs/admin/engines/settings.rst index c67b45669..b04de7cb3 100644 --- a/docs/admin/engines/settings.rst +++ b/docs/admin/engines/settings.rst @@ -94,7 +94,7 @@ Global Settings port: 8888 bind_address: "127.0.0.1" # address to listen on secret_key: "ultrasecretkey" # change this! - image_proxy: false # proxying image results through searx + image_proxy: false # proxying image results through SearXNG default_locale: "" # default interface locale default_theme: oscar # ui theme default_http_headers: @@ -293,7 +293,7 @@ engine is shown. Most of the options have a default value or even are optional. ``timeout`` : optional Timeout of the search with the current search engine. **Be careful, it will - modify the global timeout of searx.** + modify the global timeout of SearXNG.** ``api_key`` : optional In a few cases, using an API needs the use of a secret key. How to obtain them diff --git a/docs/admin/engines/sql-engines.rst b/docs/admin/engines/sql-engines.rst index 713ef9a40..9d24913a9 100644 --- a/docs/admin/engines/sql-engines.rst +++ b/docs/admin/engines/sql-engines.rst @@ -127,7 +127,7 @@ find an example configuration below: - name: my_database engine: postgresql database: my_database - username: searx + username: searxng password: password query_str: 'SELECT * from my_table WHERE my_column = %(query)s' @@ -155,7 +155,7 @@ example configuration for quering a MySQL server: - name: my_database engine: mysql_server database: my_database - username: searx + username: searxng password: password limit: 5 query_str: 'SELECT * from my_table WHERE my_column=%(query)s' |