mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 04:40:11 +01:00
79 lines
1.4 KiB
ReStructuredText
79 lines
1.4 KiB
ReStructuredText
.. _adminapi:
|
|
|
|
Administration API
|
|
------------------
|
|
|
|
Get configuration data
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
.. code:: sh
|
|
|
|
GET /config
|
|
|
|
Sample response
|
|
```````````````
|
|
|
|
.. code:: sh
|
|
|
|
{
|
|
"autocomplete": "",
|
|
"categories": [
|
|
"map",
|
|
"it",
|
|
"images",
|
|
],
|
|
"default_locale": "",
|
|
"default_theme": "oscar",
|
|
"engines": [
|
|
{
|
|
"categories": [
|
|
"map"
|
|
],
|
|
"enabled": true,
|
|
"name": "openstreetmap",
|
|
"shortcut": "osm"
|
|
},
|
|
{
|
|
"categories": [
|
|
"it"
|
|
],
|
|
"enabled": true,
|
|
"name": "arch linux wiki",
|
|
"shortcut": "al"
|
|
},
|
|
{
|
|
"categories": [
|
|
"images"
|
|
],
|
|
"enabled": true,
|
|
"name": "google images",
|
|
"shortcut": "goi"
|
|
},
|
|
{
|
|
"categories": [
|
|
"it"
|
|
],
|
|
"enabled": false,
|
|
"name": "bitbucket",
|
|
"shortcut": "bb"
|
|
},
|
|
],
|
|
"instance_name": "searx",
|
|
"locales": {
|
|
"de": "Deutsch (German)",
|
|
"en": "English",
|
|
"eo": "Esperanto (Esperanto)",
|
|
},
|
|
"plugins": [
|
|
{
|
|
"enabled": true,
|
|
"name": "HTTPS rewrite"
|
|
},
|
|
{
|
|
"enabled": false,
|
|
"name": "Vim-like hotkeys"
|
|
}
|
|
],
|
|
"safe_search": 0
|
|
}
|