settings.yml 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. general:
  2. # Debug mode, only for development
  3. debug: false
  4. # displayed name
  5. instance_name: "SearXNG"
  6. # For example: https://example.com/privacy
  7. privacypolicy_url: false
  8. # use true to use your own donation page written in searx/info/en/donate.md
  9. # use false to disable the donation link
  10. donation_url: https://docs.searxng.org/donate.html
  11. # mailto:contact@example.com
  12. contact_url: false
  13. # record stats
  14. enable_metrics: true
  15. brand:
  16. new_issue_url: https://github.com/searxng/searxng/issues/new
  17. docs_url: https://docs.searxng.org/
  18. public_instances: https://searx.space
  19. wiki_url: https://github.com/searxng/searxng/wiki
  20. issue_url: https://github.com/searxng/searxng/issues
  21. search:
  22. # Filter results. 0: None, 1: Moderate, 2: Strict
  23. safe_search: 0
  24. # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex",
  25. # "seznam", "startpage", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
  26. # by default.
  27. autocomplete: ""
  28. # minimun characters to type before autocompleter starts
  29. autocomplete_min: 4
  30. # Default search language - leave blank to detect from browser information or
  31. # use codes from 'languages.py'
  32. default_lang: ""
  33. # Available languages
  34. # languages:
  35. # - all
  36. # - en
  37. # - en-US
  38. # - de
  39. # - it-IT
  40. # - fr
  41. # - fr-BE
  42. # ban time in seconds after engine errors
  43. ban_time_on_fail: 5
  44. # max ban time in seconds after engine errors
  45. max_ban_time_on_fail: 120
  46. # remove format to deny access, use lower case.
  47. # formats: [html, csv, json, rss]
  48. formats:
  49. - html
  50. server:
  51. # If you change port, bind_address or base_url don't forget to rebuild
  52. # instance's enviroment (make buildenv)
  53. port: 8888
  54. bind_address: "127.0.0.1"
  55. base_url: false # Possible values: false or "https://example.org/location".
  56. limiter: false # rate limit the number of request on the instance, block some bots
  57. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  58. # values there.
  59. secret_key: "ultrasecretkey" # change this!
  60. # Proxying image results through searx
  61. image_proxy: false
  62. # 1.0 and 1.1 are supported
  63. http_protocol_version: "1.0"
  64. # POST queries are more secure as they don't show up in history but may cause
  65. # problems when using Firefox containers
  66. method: "POST"
  67. default_http_headers:
  68. X-Content-Type-Options: nosniff
  69. X-XSS-Protection: 1; mode=block
  70. X-Download-Options: noopen
  71. X-Robots-Tag: noindex, nofollow
  72. Referrer-Policy: no-referrer
  73. redis:
  74. # https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url
  75. url: unix:///usr/local/searxng-redis/run/redis.sock?db=0
  76. ui:
  77. # Custom static path - leave it blank if you didn't change
  78. static_path: ""
  79. static_use_hash: false
  80. # Custom templates path - leave it blank if you didn't change
  81. templates_path: ""
  82. # query_in_title: When true, the result page's titles contains the query
  83. # it decreases the privacy, since the browser can records the page titles.
  84. query_in_title: false
  85. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  86. infinite_scroll: false
  87. # ui theme
  88. default_theme: simple
  89. # center the results ?
  90. center_alignment: false
  91. # URL prefix of the internet archive, don't forgett trailing slash (if needed).
  92. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  93. # Default interface locale - leave blank to detect from browser information or
  94. # use codes from the 'locales' config section
  95. default_locale: ""
  96. # Open result links in a new tab by default
  97. # results_on_new_tab: false
  98. theme_args:
  99. # style of simple theme: auto, light, dark
  100. simple_style: auto
  101. # Lock arbitrary settings on the preferences page. To find the ID of the user
  102. # setting you want to lock, check the ID of the form on the page "preferences".
  103. #
  104. # preferences:
  105. # lock:
  106. # - language
  107. # - autocomplete
  108. # - method
  109. # - query_in_title
  110. # searx supports result proxification using an external service:
  111. # https://github.com/asciimoo/morty uncomment below section if you have running
  112. # morty proxy the key is base64 encoded (keep the !!binary notation)
  113. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  114. #
  115. # result_proxy:
  116. # url: http://127.0.0.1:3000/
  117. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  118. # key: !!binary "your_morty_proxy_key"
  119. # # [true|false] enable the "proxy" button next to each result
  120. # proxify_results: true
  121. # communication with search engines
  122. #
  123. outgoing:
  124. # default timeout in seconds, can be override by engine
  125. request_timeout: 3.0
  126. # the maximum timeout in seconds
  127. # max_request_timeout: 10.0
  128. # suffix of searx_useragent, could contain informations like an email address
  129. # to the administrator
  130. useragent_suffix: ""
  131. # The maximum number of concurrent connections that may be established.
  132. pool_connections: 100
  133. # Allow the connection pool to maintain keep-alive connections below this
  134. # point.
  135. pool_maxsize: 20
  136. # See https://www.python-httpx.org/http2/
  137. enable_http2: true
  138. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  139. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  140. # are also supported: see
  141. # https://2.python-requests.org/en/latest/user/advanced/#socks
  142. #
  143. # proxies:
  144. # all://:
  145. # - http://proxy1:8080
  146. # - http://proxy2:8080
  147. #
  148. # using_tor_proxy: true
  149. #
  150. # Extra seconds to add in order to account for the time taken by the proxy
  151. #
  152. # extra_proxy_timeout: 10.0
  153. #
  154. # uncomment below section only if you have more than one network interface
  155. # which can be the source of outgoing search requests
  156. #
  157. # source_ips:
  158. # - 1.1.1.1
  159. # - 1.1.1.2
  160. # - fe80::/126
  161. # External plugin configuration, for more details see
  162. # https://docs.searxng.org/dev/plugins.html
  163. #
  164. # plugins:
  165. # - plugin1
  166. # - plugin2
  167. # - ...
  168. # Comment or un-comment plugin to activate / deactivate by default.
  169. #
  170. # enabled_plugins:
  171. # # these plugins are enabled if nothing is configured ..
  172. # - 'Hash plugin'
  173. # - 'Search on category select'
  174. # - 'Self Informations'
  175. # - 'Tracker URL remover'
  176. # - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
  177. # # these plugins are disabled if nothing is configured ..
  178. # - 'Hostname replace' # see hostname_replace configuration below
  179. # - 'Open Access DOI rewrite'
  180. # - 'Vim-like hotkeys'
  181. # - 'Tor check plugin'
  182. # Configuration of the "Hostname replace" plugin:
  183. #
  184. # hostname_replace:
  185. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  186. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  187. # '(.*\.)?youtube-noocookie\.com$': 'yotter.example.com'
  188. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  189. # '(.*\.)?redd\.it$': 'teddit.example.com'
  190. # '(www\.)?twitter\.com$': 'nitter.example.com'
  191. # # to remove matching host names from result list, set value to false
  192. # 'spam\.example\.com': false
  193. checker:
  194. # disable checker when in debug mode
  195. off_when_debug: true
  196. # use "scheduling: false" to disable scheduling
  197. # scheduling: interval or int
  198. # to activate the scheduler:
  199. # * uncomment "scheduling" section
  200. # * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  201. # to your uwsgi.ini
  202. # scheduling:
  203. # start_after: [300, 1800] # delay to start the first run of the checker
  204. # every: [86400, 90000] # how often the checker runs
  205. # additional tests: only for the YAML anchors (see the engines section)
  206. #
  207. additional_tests:
  208. rosebud: &test_rosebud
  209. matrix:
  210. query: rosebud
  211. lang: en
  212. result_container:
  213. - not_empty
  214. - ['one_title_contains', 'citizen kane']
  215. test:
  216. - unique_results
  217. android: &test_android
  218. matrix:
  219. query: ['android']
  220. lang: ['en', 'de', 'fr', 'zh-CN']
  221. result_container:
  222. - not_empty
  223. - ['one_title_contains', 'google']
  224. test:
  225. - unique_results
  226. # tests: only for the YAML anchors (see the engines section)
  227. tests:
  228. infobox: &tests_infobox
  229. infobox:
  230. matrix:
  231. query: ["linux", "new york", "bbc"]
  232. result_container:
  233. - has_infobox
  234. categories_as_tabs:
  235. general:
  236. images:
  237. videos:
  238. news:
  239. map:
  240. music:
  241. it:
  242. science:
  243. files:
  244. social media:
  245. engines:
  246. - name: 9gag
  247. engine: 9gag
  248. shortcut: 9g
  249. disabled: true
  250. - name: apk mirror
  251. engine: apkmirror
  252. timeout: 4.0
  253. shortcut: apkm
  254. disabled: true
  255. - name: apple app store
  256. engine: apple_app_store
  257. shortcut: aps
  258. disabled: true
  259. # Requires Tor
  260. - name: ahmia
  261. engine: ahmia
  262. categories: onions
  263. enable_http: true
  264. shortcut: ah
  265. - name: arch linux wiki
  266. engine: archlinux
  267. shortcut: al
  268. - name: archive is
  269. engine: xpath
  270. search_url: https://archive.is/search/?q={query}
  271. url_xpath: (//div[@class="TEXT-BLOCK"]/a)/@href
  272. title_xpath: (//div[@class="TEXT-BLOCK"]/a)
  273. content_xpath: //div[@class="TEXT-BLOCK"]/ul/li
  274. categories: general
  275. timeout: 7.0
  276. disabled: true
  277. shortcut: ai
  278. soft_max_redirects: 1
  279. about:
  280. website: https://archive.is/
  281. wikidata_id: Q13515725
  282. official_api_documentation: https://mementoweb.org/depot/native/archiveis/
  283. use_official_api: false
  284. require_api_key: false
  285. results: HTML
  286. - name: artic
  287. engine: artic
  288. shortcut: arc
  289. timeout: 4.0
  290. - name: arxiv
  291. engine: arxiv
  292. shortcut: arx
  293. timeout: 4.0
  294. # tmp suspended: dh key too small
  295. # - name: base
  296. # engine: base
  297. # shortcut: bs
  298. - name: bandcamp
  299. engine: bandcamp
  300. shortcut: bc
  301. categories: music
  302. - name: wikipedia
  303. engine: wikipedia
  304. shortcut: wp
  305. base_url: 'https://{language}.wikipedia.org/'
  306. - name: bing
  307. engine: bing
  308. shortcut: bi
  309. disabled: true
  310. - name: bing images
  311. engine: bing_images
  312. shortcut: bii
  313. - name: bing news
  314. engine: bing_news
  315. shortcut: bin
  316. - name: bing videos
  317. engine: bing_videos
  318. shortcut: biv
  319. - name: bitbucket
  320. engine: xpath
  321. paging: true
  322. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  323. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  324. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  325. content_xpath: //article[@class="repo-summary"]/p
  326. categories: [it, repos]
  327. timeout: 4.0
  328. disabled: true
  329. shortcut: bb
  330. about:
  331. website: https://bitbucket.org/
  332. wikidata_id: Q2493781
  333. official_api_documentation: https://developer.atlassian.com/bitbucket
  334. use_official_api: false
  335. require_api_key: false
  336. results: HTML
  337. - name: btdigg
  338. engine: btdigg
  339. shortcut: bt
  340. - name: ccc-tv
  341. engine: xpath
  342. paging: false
  343. search_url: https://media.ccc.de/search/?q={query}
  344. url_xpath: //div[@class="caption"]/h3/a/@href
  345. title_xpath: //div[@class="caption"]/h3/a/text()
  346. content_xpath: //div[@class="caption"]/h4/@title
  347. categories: videos
  348. disabled: true
  349. shortcut: c3tv
  350. about:
  351. website: https://media.ccc.de/
  352. wikidata_id: Q80729951
  353. official_api_documentation: https://github.com/voc/voctoweb
  354. use_official_api: false
  355. require_api_key: false
  356. results: HTML
  357. # We don't set language: de here because media.ccc.de is not just
  358. # for a German audience. It contains many English videos and many
  359. # German videos have English subtitles.
  360. - name: openverse
  361. engine: openverse
  362. categories: images
  363. shortcut: opv
  364. # - name: core.ac.uk
  365. # engine: core
  366. # categories: science
  367. # shortcut: cor
  368. # # get your API key from: https://core.ac.uk/api-keys/register/
  369. # api_key: 'unset'
  370. - name: crossref
  371. engine: crossref
  372. shortcut: cr
  373. timeout: 10
  374. - name: yep
  375. engine: json_engine
  376. shortcut: yep
  377. categories: general
  378. disabled: true
  379. paging: false
  380. content_html_to_text: true
  381. title_html_to_text: true
  382. search_url: https://api.yep.com/fs/1/?type=web&q={query}&no_correct=false&limit=100
  383. results_query: 1/results
  384. title_query: title
  385. url_query: url
  386. content_query: snippet
  387. about:
  388. website: https://yep.com
  389. use_official_api: false
  390. require_api_key: false
  391. results: JSON
  392. - name: curlie
  393. engine: xpath
  394. shortcut: cl
  395. categories: general
  396. disabled: true
  397. paging: true
  398. lang_all: ''
  399. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  400. page_size: 20
  401. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  402. url_xpath: ./div[@class="title-and-desc"]/a/@href
  403. title_xpath: ./div[@class="title-and-desc"]/a/div
  404. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  405. about:
  406. website: https://curlie.org/
  407. wikidata_id: Q60715723
  408. use_official_api: false
  409. require_api_key: false
  410. results: HTML
  411. - name: currency
  412. engine: currency_convert
  413. categories: general
  414. shortcut: cc
  415. - name: deezer
  416. engine: deezer
  417. shortcut: dz
  418. disabled: true
  419. - name: deviantart
  420. engine: deviantart
  421. shortcut: da
  422. timeout: 3.0
  423. - name: ddg definitions
  424. engine: duckduckgo_definitions
  425. shortcut: ddd
  426. weight: 2
  427. disabled: true
  428. tests: *tests_infobox
  429. # cloudflare protected
  430. # - name: digbt
  431. # engine: digbt
  432. # shortcut: dbt
  433. # timeout: 6.0
  434. # disabled: true
  435. - name: docker hub
  436. engine: docker_hub
  437. shortcut: dh
  438. categories: [it, packages]
  439. - name: erowid
  440. engine: xpath
  441. paging: true
  442. first_page_num: 0
  443. page_size: 30
  444. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  445. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  446. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  447. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  448. categories: []
  449. shortcut: ew
  450. disabled: true
  451. about:
  452. website: https://www.erowid.org/
  453. wikidata_id: Q1430691
  454. official_api_documentation:
  455. use_official_api: false
  456. require_api_key: false
  457. results: HTML
  458. # - name: elasticsearch
  459. # shortcut: es
  460. # engine: elasticsearch
  461. # base_url: http://localhost:9200
  462. # username: elastic
  463. # password: changeme
  464. # index: my-index
  465. # # available options: match, simple_query_string, term, terms, custom
  466. # query_type: match
  467. # # if query_type is set to custom, provide your query here
  468. # #custom_query_json: {"query":{"match_all": {}}}
  469. # #show_metadata: false
  470. # disabled: true
  471. - name: wikidata
  472. engine: wikidata
  473. shortcut: wd
  474. timeout: 3.0
  475. weight: 2
  476. tests: *tests_infobox
  477. - name: duckduckgo
  478. engine: duckduckgo
  479. shortcut: ddg
  480. - name: duckduckgo images
  481. engine: duckduckgo_images
  482. shortcut: ddi
  483. timeout: 3.0
  484. disabled: true
  485. - name: duckduckgo weather
  486. engine: duckduckgo_weather
  487. shortcut: ddw
  488. disabled: true
  489. - name: apple maps
  490. engine: apple_maps
  491. shortcut: apm
  492. disabled: true
  493. timeout: 5.0
  494. - name: emojipedia
  495. engine: emojipedia
  496. timeout: 4.0
  497. shortcut: em
  498. disabled: true
  499. - name: tineye
  500. engine: tineye
  501. shortcut: tin
  502. timeout: 9.0
  503. - name: etymonline
  504. engine: xpath
  505. paging: true
  506. search_url: https://etymonline.com/search?page={pageno}&q={query}
  507. url_xpath: //a[contains(@class, "word__name--")]/@href
  508. title_xpath: //a[contains(@class, "word__name--")]
  509. content_xpath: //section[contains(@class, "word__defination")]
  510. first_page_num: 1
  511. shortcut: et
  512. categories: [dictionaries]
  513. disabled: false
  514. about:
  515. website: https://www.etymonline.com/
  516. wikidata_id: Q1188617
  517. official_api_documentation:
  518. use_official_api: false
  519. require_api_key: false
  520. results: HTML
  521. # - name: ebay
  522. # engine: ebay
  523. # shortcut: eb
  524. # base_url: 'https://www.ebay.com'
  525. # disabled: true
  526. # timeout: 5
  527. - name: 1x
  528. engine: www1x
  529. shortcut: 1x
  530. timeout: 3.0
  531. disabled: true
  532. - name: fdroid
  533. engine: fdroid
  534. shortcut: fd
  535. disabled: true
  536. - name: flickr
  537. categories: images
  538. shortcut: fl
  539. # You can use the engine using the official stable API, but you need an API
  540. # key, see: https://www.flickr.com/services/apps/create/
  541. # engine: flickr
  542. # api_key: 'apikey' # required!
  543. # Or you can use the html non-stable engine, activated by default
  544. engine: flickr_noapi
  545. - name: free software directory
  546. engine: mediawiki
  547. shortcut: fsd
  548. categories: [it, software wikis]
  549. base_url: https://directory.fsf.org/
  550. number_of_results: 5
  551. # what part of a page matches the query string: title, text, nearmatch
  552. # * title - query matches title
  553. # * text - query matches the text of page
  554. # * nearmatch - nearmatch in title
  555. search_type: title
  556. timeout: 5.0
  557. disabled: true
  558. about:
  559. website: https://directory.fsf.org/
  560. wikidata_id: Q2470288
  561. # - name: freesound
  562. # engine: freesound
  563. # shortcut: fnd
  564. # disabled: true
  565. # timeout: 15.0
  566. # API key required, see: https://freesound.org/docs/api/overview.html
  567. # api_key: MyAPIkey
  568. - name: frinkiac
  569. engine: frinkiac
  570. shortcut: frk
  571. disabled: true
  572. - name: genius
  573. engine: genius
  574. shortcut: gen
  575. - name: gigablast
  576. engine: gigablast
  577. shortcut: gb
  578. timeout: 4.0
  579. disabled: true
  580. additional_tests:
  581. rosebud: *test_rosebud
  582. - name: gentoo
  583. engine: gentoo
  584. shortcut: ge
  585. - name: gitlab
  586. engine: json_engine
  587. paging: true
  588. search_url: https://gitlab.com/api/v4/projects?search={query}&page={pageno}
  589. url_query: web_url
  590. title_query: name_with_namespace
  591. content_query: description
  592. page_size: 20
  593. categories: [it, repos]
  594. shortcut: gl
  595. timeout: 10.0
  596. disabled: true
  597. about:
  598. website: https://about.gitlab.com/
  599. wikidata_id: Q16639197
  600. official_api_documentation: https://docs.gitlab.com/ee/api/
  601. use_official_api: false
  602. require_api_key: false
  603. results: JSON
  604. - name: github
  605. engine: github
  606. shortcut: gh
  607. # This a Gitea service. If you would like to use a different instance,
  608. # change codeberg.org to URL of the desired Gitea host. Or you can create a
  609. # new engine by copying this and changing the name, shortcut and search_url.
  610. - name: codeberg
  611. engine: json_engine
  612. search_url: https://codeberg.org/api/v1/repos/search?q={query}&limit=10
  613. url_query: html_url
  614. title_query: name
  615. content_query: description
  616. categories: [it, repos]
  617. shortcut: cb
  618. disabled: true
  619. about:
  620. website: https://codeberg.org/
  621. wikidata_id:
  622. official_api_documentation: https://try.gitea.io/api/swagger
  623. use_official_api: false
  624. require_api_key: false
  625. results: JSON
  626. - name: google
  627. engine: google
  628. shortcut: go
  629. # see https://docs.searxng.org/src/searx.engines.google.html#module-searx.engines.google
  630. use_mobile_ui: false
  631. # additional_tests:
  632. # android: *test_android
  633. # - name: google italian
  634. # engine: google
  635. # shortcut: goit
  636. # use_mobile_ui: false
  637. # language: it
  638. # - name: google mobile ui
  639. # engine: google
  640. # shortcut: gomui
  641. # use_mobile_ui: true
  642. - name: google images
  643. engine: google_images
  644. shortcut: goi
  645. # additional_tests:
  646. # android: *test_android
  647. # dali:
  648. # matrix:
  649. # query: ['Dali Christ']
  650. # lang: ['en', 'de', 'fr', 'zh-CN']
  651. # result_container:
  652. # - ['one_title_contains', 'Salvador']
  653. - name: google news
  654. engine: google_news
  655. shortcut: gon
  656. # additional_tests:
  657. # android: *test_android
  658. - name: google videos
  659. engine: google_videos
  660. shortcut: gov
  661. # additional_tests:
  662. # android: *test_android
  663. - name: google scholar
  664. engine: google_scholar
  665. shortcut: gos
  666. - name: google play apps
  667. engine: google_play_apps
  668. shortcut: gpa
  669. disabled: true
  670. - name: google play movies
  671. engine: xpath
  672. send_accept_language_header: true
  673. search_url: https://play.google.com/store/search?q={query}&c=movies
  674. results_xpath: '//div[@class="ImZGtf mpg5gc"]'
  675. title_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a'
  676. url_xpath: './/div[@class="RZEgze"]//div[@class="kCSSQe"]//a/@href'
  677. content_xpath: './/div[@class="kCSSQe"]'
  678. thumbnail_xpath: './/div[@class="uzcko"]/div/span[1]//img/@data-src'
  679. categories: videos
  680. shortcut: gpm
  681. disabled: true
  682. about:
  683. website: https://play.google.com/
  684. wikidata_id: Q79576
  685. official_api_documentation:
  686. use_official_api: false
  687. require_api_key: false
  688. results: HTML
  689. - name: gpodder
  690. engine: json_engine
  691. shortcut: gpod
  692. timeout: 4.0
  693. paging: false
  694. search_url: https://gpodder.net/search.json?q={query}
  695. url_query: url
  696. title_query: title
  697. content_query: description
  698. page_size: 19
  699. categories: music
  700. disabled: true
  701. about:
  702. website: https://gpodder.net
  703. wikidata_id: Q3093354
  704. official_api_documentation: https://gpoddernet.readthedocs.io/en/latest/api/
  705. use_official_api: false
  706. requires_api_key: false
  707. results: JSON
  708. - name: habrahabr
  709. engine: xpath
  710. paging: true
  711. search_url: https://habrahabr.ru/search/page{pageno}/?q={query}
  712. url_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
  713. title_xpath: //article[contains(@class, "post")]//a[@class="post__title_link"]
  714. content_xpath: //article[contains(@class, "post")]//div[contains(@class, "post__text")]
  715. categories: it
  716. timeout: 4.0
  717. disabled: true
  718. shortcut: habr
  719. about:
  720. website: https://habr.com/
  721. wikidata_id: Q4494434
  722. official_api_documentation: https://habr.com/en/docs/help/api/
  723. use_official_api: false
  724. require_api_key: false
  725. results: HTML
  726. - name: hoogle
  727. engine: xpath
  728. paging: true
  729. search_url: https://hoogle.haskell.org/?hoogle={query}&start={pageno}
  730. results_xpath: '//div[@class="result"]'
  731. title_xpath: './/div[@class="ans"]//a'
  732. url_xpath: './/div[@class="ans"]//a/@href'
  733. content_xpath: './/div[@class="from"]'
  734. page_size: 20
  735. categories: [it, packages]
  736. shortcut: ho
  737. about:
  738. website: https://hoogle.haskell.org/
  739. wikidata_id: Q34010
  740. official_api_documentation: https://hackage.haskell.org/api
  741. use_official_api: false
  742. require_api_key: false
  743. results: JSON
  744. - name: imdb
  745. engine: imdb
  746. shortcut: imdb
  747. timeout: 6.0
  748. disabled: true
  749. - name: ina
  750. engine: ina
  751. shortcut: in
  752. timeout: 6.0
  753. disabled: true
  754. - name: invidious
  755. engine: invidious
  756. # Instanes will be selected randomly, see https://api.invidious.io/ for
  757. # instances that are stable (good uptime) and close to you.
  758. base_url:
  759. - https://invidious.snopyta.org
  760. - https://vid.puffyan.us
  761. # - https://invidious.kavin.rocks # Error 1020 // Access denied by Cloudflare
  762. - https://invidio.xamh.de
  763. - https://inv.riverside.rocks
  764. shortcut: iv
  765. timeout: 3.0
  766. disabled: true
  767. - name: jisho
  768. engine: jisho
  769. shortcut: js
  770. timeout: 3.0
  771. disabled: true
  772. - name: kickass
  773. engine: kickass
  774. shortcut: kc
  775. timeout: 4.0
  776. disabled: true
  777. - name: library genesis
  778. engine: xpath
  779. search_url: https://libgen.fun/search.php?req={query}
  780. url_xpath: //a[contains(@href,"get.php?md5")]/@href
  781. title_xpath: //a[contains(@href,"book/")]/text()[1]
  782. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  783. categories: files
  784. timeout: 7.0
  785. disabled: true
  786. shortcut: lg
  787. about:
  788. website: https://libgen.fun/
  789. wikidata_id: Q22017206
  790. official_api_documentation:
  791. use_official_api: false
  792. require_api_key: false
  793. results: HTML
  794. - name: z-library
  795. engine: zlibrary
  796. shortcut: zlib
  797. categories: files
  798. timeout: 3.0
  799. # choose base_url, otherwise engine will do it at initialization time
  800. # base_url: https://b-ok.cc
  801. # base_url: https://de1lib.org
  802. # base_url: https://booksc.eu # does not have cover preview
  803. # base_url: https://booksc.org # does not have cover preview
  804. - name: library of congress
  805. engine: loc
  806. shortcut: loc
  807. categories: images
  808. - name: lingva
  809. engine: lingva
  810. shortcut: lv
  811. # set lingva instance in url, by default it will use the official instance
  812. # url: https://lingva.ml
  813. - name: lobste.rs
  814. engine: xpath
  815. search_url: https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  816. results_xpath: //li[contains(@class, "story")]
  817. url_xpath: .//a[@class="u-url"]/@href
  818. title_xpath: .//a[@class="u-url"]
  819. content_xpath: .//a[@class="domain"]
  820. categories: it
  821. shortcut: lo
  822. timeout: 5.0
  823. disabled: true
  824. about:
  825. website: https://lobste.rs/
  826. wikidata_id: Q60762874
  827. official_api_documentation:
  828. use_official_api: false
  829. require_api_key: false
  830. results: HTML
  831. - name: azlyrics
  832. shortcut: lyrics
  833. engine: xpath
  834. timeout: 4.0
  835. disabled: true
  836. categories: [music, lyrics]
  837. paging: true
  838. search_url: https://search.azlyrics.com/search.php?q={query}&w=lyrics&p={pageno}
  839. url_xpath: //td[@class="text-left visitedlyr"]/a/@href
  840. title_xpath: //span/b/text()
  841. content_xpath: //td[@class="text-left visitedlyr"]/a/small
  842. about:
  843. website: https://azlyrics.com
  844. wikidata_id: Q66372542
  845. official_api_documentation:
  846. use_official_api: false
  847. require_api_key: false
  848. results: HTML
  849. # - name: meilisearch
  850. # engine: meilisearch
  851. # shortcut: mes
  852. # enable_http: true
  853. # base_url: http://localhost:7700
  854. # index: my-index
  855. - name: mixcloud
  856. engine: mixcloud
  857. shortcut: mc
  858. # MongoDB engine
  859. # Required dependency: pymongo
  860. # - name: mymongo
  861. # engine: mongodb
  862. # shortcut: md
  863. # exact_match_only: false
  864. # host: '127.0.0.1'
  865. # port: 27017
  866. # enable_http: true
  867. # results_per_page: 20
  868. # database: 'business'
  869. # collection: 'reviews' # name of the db collection
  870. # key: 'name' # key in the collection to search for
  871. - name: neeva
  872. engine: xpath
  873. shortcut: nv
  874. time_range_support: true
  875. time_range_url: '&alf%5Bfreshness%5D={time_range_val}'
  876. time_range_map:
  877. day: 'Day'
  878. week: 'Week'
  879. month: 'Month'
  880. year: 'Year'
  881. search_url: https://neeva.com/search?q={query}&c=All&src=Pagination&page={pageno}{time_range}
  882. results_xpath: //div[@class="web-index__component-2rKiM"] | //li[@class="web-rich-deep-links__deepLink-SIbD4"]
  883. url_xpath: .//a[@class="lib-doc-title__link-1b9rC"]/@href | ./h2/a/@href
  884. title_xpath: .//a[@class="lib-doc-title__link-1b9rC"] | ./h2/a
  885. content_xpath: >
  886. .//div[@class="lib-doc-snippet__component-3ewW6"]/text() |
  887. .//div[@class="lib-doc-snippet__component-3ewW6"]/*[not(self::a)] |
  888. ./p
  889. content_html_to_text: true
  890. suggestion_xpath: //span[@class="result-related-searches__link-2ho_u"]
  891. paging: true
  892. disabled: true
  893. categories: [general, web]
  894. timeout: 5.0
  895. soft_max_redirects: 2
  896. about:
  897. website: https://neeva.com
  898. official_api_documentation:
  899. use_official_api: false
  900. require_api_key: false
  901. results: HTML
  902. - name: npm
  903. engine: json_engine
  904. paging: true
  905. first_page_num: 0
  906. search_url: https://api.npms.io/v2/search?q={query}&size=25&from={pageno}
  907. results_query: results
  908. url_query: package/links/npm
  909. title_query: package/name
  910. content_query: package/description
  911. page_size: 25
  912. categories: [it, packages]
  913. disabled: true
  914. timeout: 5.0
  915. shortcut: npm
  916. about:
  917. website: https://npms.io/
  918. wikidata_id: Q7067518
  919. official_api_documentation: https://api-docs.npms.io/
  920. use_official_api: false
  921. require_api_key: false
  922. results: JSON
  923. - name: nyaa
  924. engine: nyaa
  925. shortcut: nt
  926. disabled: true
  927. - name: mankier
  928. engine: json_engine
  929. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  930. results_query: results
  931. url_query: url
  932. title_query: name
  933. content_query: description
  934. categories: it
  935. shortcut: man
  936. about:
  937. website: https://www.mankier.com/
  938. official_api_documentation: https://www.mankier.com/api
  939. use_official_api: true
  940. require_api_key: false
  941. results: JSON
  942. - name: openairedatasets
  943. engine: json_engine
  944. paging: true
  945. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  946. results_query: response/results/result
  947. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  948. title_query: metadata/oaf:entity/oaf:result/title/$
  949. content_query: metadata/oaf:entity/oaf:result/description/$
  950. content_html_to_text: true
  951. categories: "science"
  952. shortcut: oad
  953. timeout: 5.0
  954. about:
  955. website: https://www.openaire.eu/
  956. wikidata_id: Q25106053
  957. official_api_documentation: https://api.openaire.eu/
  958. use_official_api: false
  959. require_api_key: false
  960. results: JSON
  961. - name: openairepublications
  962. engine: json_engine
  963. paging: true
  964. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  965. results_query: response/results/result
  966. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  967. title_query: metadata/oaf:entity/oaf:result/title/$
  968. content_query: metadata/oaf:entity/oaf:result/description/$
  969. content_html_to_text: true
  970. categories: science
  971. shortcut: oap
  972. timeout: 5.0
  973. about:
  974. website: https://www.openaire.eu/
  975. wikidata_id: Q25106053
  976. official_api_documentation: https://api.openaire.eu/
  977. use_official_api: false
  978. require_api_key: false
  979. results: JSON
  980. # - name: opensemanticsearch
  981. # engine: opensemantic
  982. # shortcut: oss
  983. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  984. - name: openstreetmap
  985. engine: openstreetmap
  986. shortcut: osm
  987. - name: openrepos
  988. engine: xpath
  989. paging: true
  990. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  991. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  992. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  993. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  994. categories: files
  995. timeout: 4.0
  996. disabled: true
  997. shortcut: or
  998. about:
  999. website: https://openrepos.net/
  1000. wikidata_id:
  1001. official_api_documentation:
  1002. use_official_api: false
  1003. require_api_key: false
  1004. results: HTML
  1005. - name: packagist
  1006. engine: json_engine
  1007. paging: true
  1008. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1009. results_query: results
  1010. url_query: url
  1011. title_query: name
  1012. content_query: description
  1013. categories: [it, packages]
  1014. disabled: true
  1015. timeout: 5.0
  1016. shortcut: pack
  1017. about:
  1018. website: https://packagist.org
  1019. wikidata_id: Q108311377
  1020. official_api_documentation: https://packagist.org/apidoc
  1021. use_official_api: true
  1022. require_api_key: false
  1023. results: JSON
  1024. - name: pdbe
  1025. engine: pdbe
  1026. shortcut: pdb
  1027. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1028. # hide_obsolete: false
  1029. - name: photon
  1030. engine: photon
  1031. shortcut: ph
  1032. - name: piratebay
  1033. engine: piratebay
  1034. shortcut: tpb
  1035. # You may need to change this URL to a proxy if piratebay is blocked in your
  1036. # country
  1037. url: https://thepiratebay.org/
  1038. timeout: 3.0
  1039. # Required dependency: psychopg2
  1040. # - name: postgresql
  1041. # engine: postgresql
  1042. # database: postgres
  1043. # username: postgres
  1044. # password: postgres
  1045. # limit: 10
  1046. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1047. # shortcut : psql
  1048. - name: pub.dev
  1049. engine: xpath
  1050. shortcut: pd
  1051. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1052. paging: true
  1053. results_xpath: /html/body/main/div/div[@class="search-results"]/div[@class="packages"]/div
  1054. url_xpath: ./div/h3/a/@href
  1055. title_xpath: ./div/h3/a
  1056. content_xpath: ./p[@class="packages-description"]
  1057. categories: [packages, it]
  1058. timeout: 3.0
  1059. disabled: true
  1060. first_page_num: 1
  1061. about:
  1062. website: https://pub.dev/
  1063. official_api_documentation: https://pub.dev/help/api
  1064. use_official_api: false
  1065. require_api_key: false
  1066. results: HTML
  1067. - name: pubmed
  1068. engine: pubmed
  1069. shortcut: pub
  1070. timeout: 3.0
  1071. - name: pypi
  1072. shortcut: pypi
  1073. engine: xpath
  1074. paging: true
  1075. search_url: https://pypi.org/search?q={query}&page={pageno}
  1076. results_xpath: /html/body/main/div/div/div/form/div/ul/li/a[@class="package-snippet"]
  1077. url_xpath: ./@href
  1078. title_xpath: ./h3/span[@class="package-snippet__name"]
  1079. content_xpath: ./p
  1080. suggestion_xpath: /html/body/main/div/div/div/form/div/div[@class="callout-block"]/p/span/a[@class="link"]
  1081. first_page_num: 1
  1082. categories: [it, packages]
  1083. about:
  1084. website: https://pypi.org
  1085. wikidata_id: Q2984686
  1086. official_api_documentation: https://warehouse.readthedocs.io/api-reference/index.html
  1087. use_official_api: false
  1088. require_api_key: false
  1089. results: HTML
  1090. - name: qwant
  1091. qwant_categ: web
  1092. engine: qwant
  1093. shortcut: qw
  1094. categories: [general, web]
  1095. disabled: false
  1096. additional_tests:
  1097. rosebud: *test_rosebud
  1098. - name: qwant news
  1099. qwant_categ: news
  1100. engine: qwant
  1101. shortcut: qwn
  1102. categories: news
  1103. disabled: false
  1104. network: qwant
  1105. - name: qwant images
  1106. qwant_categ: images
  1107. engine: qwant
  1108. shortcut: qwi
  1109. categories: [images, web]
  1110. disabled: false
  1111. network: qwant
  1112. - name: qwant videos
  1113. qwant_categ: videos
  1114. engine: qwant
  1115. shortcut: qwv
  1116. categories: [videos, web]
  1117. disabled: false
  1118. network: qwant
  1119. # - name: library
  1120. # engine: recoll
  1121. # shortcut: lib
  1122. # base_url: 'https://recoll.example.org/'
  1123. # search_dir: ''
  1124. # mount_prefix: /export
  1125. # dl_prefix: 'https://download.example.org'
  1126. # timeout: 30.0
  1127. # categories: files
  1128. # disabled: true
  1129. # - name: recoll library reference
  1130. # engine: recoll
  1131. # base_url: 'https://recoll.example.org/'
  1132. # search_dir: reference
  1133. # mount_prefix: /export
  1134. # dl_prefix: 'https://download.example.org'
  1135. # shortcut: libr
  1136. # timeout: 30.0
  1137. # categories: files
  1138. # disabled: true
  1139. - name: reddit
  1140. engine: reddit
  1141. shortcut: re
  1142. page_size: 25
  1143. # Required dependency: redis
  1144. # - name: myredis
  1145. # shortcut : rds
  1146. # engine: redis_server
  1147. # exact_match_only: false
  1148. # host: '127.0.0.1'
  1149. # port: 6379
  1150. # enable_http: true
  1151. # password: ''
  1152. # db: 0
  1153. # tmp suspended: bad certificate
  1154. # - name: scanr structures
  1155. # shortcut: scs
  1156. # engine: scanr_structures
  1157. # disabled: true
  1158. - name: sepiasearch
  1159. engine: sepiasearch
  1160. shortcut: sep
  1161. - name: soundcloud
  1162. engine: soundcloud
  1163. shortcut: sc
  1164. - name: stackoverflow
  1165. engine: stackexchange
  1166. shortcut: st
  1167. api_site: 'stackoverflow'
  1168. categories: [it, q&a]
  1169. - name: askubuntu
  1170. engine: stackexchange
  1171. shortcut: ubuntu
  1172. api_site: 'askubuntu'
  1173. categories: [it, q&a]
  1174. - name: superuser
  1175. engine: stackexchange
  1176. shortcut: su
  1177. api_site: 'superuser'
  1178. categories: [it, q&a]
  1179. - name: searchcode code
  1180. engine: searchcode_code
  1181. shortcut: scc
  1182. disabled: true
  1183. - name: framalibre
  1184. engine: framalibre
  1185. shortcut: frl
  1186. disabled: true
  1187. # - name: searx
  1188. # engine: searx_engine
  1189. # shortcut: se
  1190. # instance_urls :
  1191. # - http://127.0.0.1:8888/
  1192. # - ...
  1193. # disabled: true
  1194. - name: semantic scholar
  1195. engine: semantic_scholar
  1196. disabled: true
  1197. shortcut: se
  1198. # Spotify needs API credentials
  1199. # - name: spotify
  1200. # engine: spotify
  1201. # shortcut: stf
  1202. # api_client_id: *******
  1203. # api_client_secret: *******
  1204. # - name: solr
  1205. # engine: solr
  1206. # shortcut: slr
  1207. # base_url: http://localhost:8983
  1208. # collection: collection_name
  1209. # sort: '' # sorting: asc or desc
  1210. # field_list: '' # comma separated list of field names to display on the UI
  1211. # default_fields: '' # default field to query
  1212. # query_fields: '' # query fields
  1213. # enable_http: true
  1214. # - name: springer nature
  1215. # engine: springer
  1216. # # get your API key from: https://dev.springernature.com/signup
  1217. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1218. # api_key: 'unset'
  1219. # shortcut: springer
  1220. # timeout: 15.0
  1221. - name: startpage
  1222. engine: startpage
  1223. shortcut: sp
  1224. timeout: 6.0
  1225. disabled: true
  1226. additional_tests:
  1227. rosebud: *test_rosebud
  1228. - name: tokyotoshokan
  1229. engine: tokyotoshokan
  1230. shortcut: tt
  1231. timeout: 6.0
  1232. disabled: true
  1233. - name: solidtorrents
  1234. engine: solidtorrents
  1235. shortcut: solid
  1236. timeout: 4.0
  1237. disabled: false
  1238. base_url:
  1239. - https://solidtorrents.net
  1240. - https://solidtorrents.eu
  1241. - https://solidtorrents.to
  1242. - https://bitsearch.to
  1243. # For this demo of the sqlite engine download:
  1244. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1245. # and unpack into searx/data/filmliste-v2.db
  1246. # Query to test: "!demo concert"
  1247. #
  1248. # - name: demo
  1249. # engine: sqlite
  1250. # shortcut: demo
  1251. # categories: general
  1252. # result_template: default.html
  1253. # database: searx/data/filmliste-v2.db
  1254. # query_str: >-
  1255. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1256. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1257. # description AS content
  1258. # FROM film
  1259. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1260. # ORDER BY duration DESC
  1261. # disabled: false
  1262. # Requires Tor
  1263. - name: torch
  1264. engine: xpath
  1265. paging: true
  1266. search_url:
  1267. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1268. results_xpath: //table//tr
  1269. url_xpath: ./td[2]/a
  1270. title_xpath: ./td[2]/b
  1271. content_xpath: ./td[2]/small
  1272. categories: onions
  1273. enable_http: true
  1274. shortcut: tch
  1275. # torznab engine lets you query any torznab compatible indexer. Using this
  1276. # engine in combination with Jackett (https://github.com/Jackett/Jackett)
  1277. # opens the possibility to query a lot of public and private indexers directly
  1278. # from SearXNG.
  1279. # - name: torznab
  1280. # engine: torznab
  1281. # shortcut: trz
  1282. # base_url: http://localhost:9117/api/v2.0/indexers/all/results/torznab
  1283. # enable_http: true # if using localhost
  1284. # api_key: xxxxxxxxxxxxxxx
  1285. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1286. # torznab_categories: # optional
  1287. # - 2000
  1288. # - 5000
  1289. - name: twitter
  1290. shortcut: tw
  1291. engine: twitter
  1292. disabled: true
  1293. # maybe in a fun category
  1294. # - name: uncyclopedia
  1295. # engine: mediawiki
  1296. # shortcut: unc
  1297. # base_url: https://uncyclopedia.wikia.com/
  1298. # number_of_results: 5
  1299. # tmp suspended - too slow, too many errors
  1300. # - name: urbandictionary
  1301. # engine : xpath
  1302. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1303. # url_xpath : //*[@class="word"]/@href
  1304. # title_xpath : //*[@class="def-header"]
  1305. # content_xpath: //*[@class="meaning"]
  1306. # shortcut: ud
  1307. - name: unsplash
  1308. engine: unsplash
  1309. shortcut: us
  1310. - name: yahoo
  1311. engine: yahoo
  1312. shortcut: yh
  1313. disabled: true
  1314. - name: yahoo news
  1315. engine: yahoo_news
  1316. shortcut: yhn
  1317. - name: youtube
  1318. shortcut: yt
  1319. # You can use the engine using the official stable API, but you need an API
  1320. # key See: https://console.developers.google.com/project
  1321. #
  1322. # engine: youtube_api
  1323. # api_key: 'apikey' # required!
  1324. #
  1325. # Or you can use the html non-stable engine, activated by default
  1326. engine: youtube_noapi
  1327. - name: dailymotion
  1328. engine: dailymotion
  1329. shortcut: dm
  1330. - name: vimeo
  1331. engine: vimeo
  1332. shortcut: vm
  1333. - name: wiby
  1334. engine: json_engine
  1335. search_url: https://wiby.me/json/?q={query}
  1336. url_query: URL
  1337. title_query: Title
  1338. content_query: Snippet
  1339. categories: [general, web]
  1340. shortcut: wib
  1341. disabled: true
  1342. about:
  1343. website: https://wiby.me/
  1344. - name: marginalia
  1345. engine: json_engine
  1346. shortcut: mar
  1347. categories: general
  1348. paging: false
  1349. # index: {"0": "popular", "1": "blogs", "2": "big_sites",
  1350. # "3": "default", "4": experimental"}
  1351. search_url: https://api.marginalia.nu/public/search/{query}?index=4&count=20
  1352. results_query: results
  1353. url_query: url
  1354. title_query: title
  1355. content_query: description
  1356. timeout: 1.5
  1357. disabled: true
  1358. about:
  1359. website: https://www.marginalia.nu/
  1360. official_api_documentation: https://api.marginalia.nu/
  1361. use_official_api: true
  1362. require_api_key: true
  1363. results: JSON
  1364. - name: alexandria
  1365. engine: json_engine
  1366. shortcut: alx
  1367. categories: general
  1368. paging: true
  1369. search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
  1370. results_query: results
  1371. title_query: title
  1372. url_query: url
  1373. content_query: snippet
  1374. timeout: 1.5
  1375. disabled: true
  1376. about:
  1377. website: https://alexandria.org/
  1378. official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
  1379. use_official_api: true
  1380. require_api_key: false
  1381. results: JSON
  1382. - name: wikibooks
  1383. engine: mediawiki
  1384. shortcut: wb
  1385. categories: general
  1386. base_url: "https://{language}.wikibooks.org/"
  1387. number_of_results: 5
  1388. search_type: text
  1389. disabled: true
  1390. about:
  1391. website: https://www.wikibooks.org/
  1392. wikidata_id: Q367
  1393. - name: wikinews
  1394. engine: mediawiki
  1395. shortcut: wn
  1396. categories: news
  1397. base_url: "https://{language}.wikinews.org/"
  1398. number_of_results: 5
  1399. search_type: text
  1400. disabled: true
  1401. about:
  1402. website: https://www.wikinews.org/
  1403. wikidata_id: Q964
  1404. - name: wikiquote
  1405. engine: mediawiki
  1406. shortcut: wq
  1407. categories: general
  1408. base_url: "https://{language}.wikiquote.org/"
  1409. number_of_results: 5
  1410. search_type: text
  1411. disabled: true
  1412. additional_tests:
  1413. rosebud: *test_rosebud
  1414. about:
  1415. website: https://www.wikiquote.org/
  1416. wikidata_id: Q369
  1417. - name: wikisource
  1418. engine: mediawiki
  1419. shortcut: ws
  1420. categories: general
  1421. base_url: "https://{language}.wikisource.org/"
  1422. number_of_results: 5
  1423. search_type: text
  1424. disabled: true
  1425. about:
  1426. website: https://www.wikisource.org/
  1427. wikidata_id: Q263
  1428. - name: wiktionary
  1429. engine: mediawiki
  1430. shortcut: wt
  1431. categories: [dictionaries]
  1432. base_url: "https://{language}.wiktionary.org/"
  1433. number_of_results: 5
  1434. search_type: text
  1435. disabled: false
  1436. about:
  1437. website: https://www.wiktionary.org/
  1438. wikidata_id: Q151
  1439. - name: wikiversity
  1440. engine: mediawiki
  1441. shortcut: wv
  1442. categories: general
  1443. base_url: "https://{language}.wikiversity.org/"
  1444. number_of_results: 5
  1445. search_type: text
  1446. disabled: true
  1447. about:
  1448. website: https://www.wikiversity.org/
  1449. wikidata_id: Q370
  1450. - name: wikivoyage
  1451. engine: mediawiki
  1452. shortcut: wy
  1453. categories: general
  1454. base_url: "https://{language}.wikivoyage.org/"
  1455. number_of_results: 5
  1456. search_type: text
  1457. disabled: true
  1458. about:
  1459. website: https://www.wikivoyage.org/
  1460. wikidata_id: Q373
  1461. - name: wolframalpha
  1462. shortcut: wa
  1463. # You can use the engine using the official stable API, but you need an API
  1464. # key. See: https://products.wolframalpha.com/api/
  1465. #
  1466. # engine: wolframalpha_api
  1467. # api_key: ''
  1468. #
  1469. # Or you can use the html non-stable engine, activated by default
  1470. engine: wolframalpha_noapi
  1471. timeout: 6.0
  1472. categories: []
  1473. - name: dictzone
  1474. engine: dictzone
  1475. shortcut: dc
  1476. - name: mymemory translated
  1477. engine: translated
  1478. shortcut: tl
  1479. timeout: 5.0
  1480. disabled: false
  1481. # You can use without an API key, but you are limited to 1000 words/day
  1482. # See: https://mymemory.translated.net/doc/usagelimits.php
  1483. # api_key: ''
  1484. # Required dependency: mysql-connector-python
  1485. # - name: mysql
  1486. # engine: mysql_server
  1487. # database: mydatabase
  1488. # username: user
  1489. # password: pass
  1490. # limit: 10
  1491. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1492. # shortcut: mysql
  1493. - name: 1337x
  1494. engine: 1337x
  1495. shortcut: 1337x
  1496. disabled: true
  1497. - name: duden
  1498. engine: duden
  1499. shortcut: du
  1500. disabled: true
  1501. - name: seznam
  1502. shortcut: szn
  1503. engine: seznam
  1504. disabled: true
  1505. # - name: deepl
  1506. # engine: deepl
  1507. # shortcut: dpl
  1508. # # You can use the engine using the official stable API, but you need an API key
  1509. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1510. # api_key: '' # required!
  1511. # timeout: 5.0
  1512. # disabled: true
  1513. - name: mojeek
  1514. shortcut: mjk
  1515. engine: xpath
  1516. paging: true
  1517. categories: [general, web]
  1518. search_url: https://www.mojeek.com/search?q={query}&s={pageno}
  1519. results_xpath: //a[@class="ob"]
  1520. url_xpath: ./@href
  1521. title_xpath: ./h2
  1522. content_xpath: ../p[@class="s"]
  1523. suggestion_xpath: /html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
  1524. first_page_num: 0
  1525. page_size: 10
  1526. disabled: true
  1527. about:
  1528. website: https://www.mojeek.com/
  1529. wikidata_id: Q60747299
  1530. official_api_documentation: https://www.mojeek.com/services/api.html/
  1531. use_official_api: false
  1532. require_api_key: false
  1533. results: HTML
  1534. - name: naver
  1535. shortcut: nvr
  1536. categories: [general, web]
  1537. engine: xpath
  1538. paging: true
  1539. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1540. url_xpath: //a[@class="link_tit"]/@href
  1541. title_xpath: //a[@class="link_tit"]
  1542. content_xpath: //a[@class="total_dsc"]/div
  1543. first_page_num: 1
  1544. page_size: 10
  1545. disabled: true
  1546. about:
  1547. website: https://www.naver.com/
  1548. wikidata_id: Q485639
  1549. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1550. use_official_api: false
  1551. require_api_key: false
  1552. results: HTML
  1553. language: ko
  1554. - name: rubygems
  1555. shortcut: rbg
  1556. engine: xpath
  1557. paging: true
  1558. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1559. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1560. url_xpath: ./@href
  1561. title_xpath: ./span/h2
  1562. content_xpath: ./span/p
  1563. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1564. first_page_num: 1
  1565. categories: [it, packages]
  1566. disabled: true
  1567. about:
  1568. website: https://rubygems.org/
  1569. wikidata_id: Q1853420
  1570. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1571. use_official_api: false
  1572. require_api_key: false
  1573. results: HTML
  1574. - name: peertube
  1575. engine: peertube
  1576. shortcut: ptb
  1577. paging: true
  1578. # https://instances.joinpeertube.org/instances
  1579. base_url: https://peertube.biz/
  1580. # base_url: https://tube.tardis.world/
  1581. categories: videos
  1582. disabled: true
  1583. timeout: 6.0
  1584. - name: mediathekviewweb
  1585. engine: mediathekviewweb
  1586. shortcut: mvw
  1587. disabled: true
  1588. # - name: yacy
  1589. # engine: yacy
  1590. # shortcut: ya
  1591. # base_url: http://localhost:8090
  1592. # required if you aren't using HTTPS for your local yacy instance'
  1593. # enable_http: true
  1594. # number_of_results: 5
  1595. # timeout: 3.0
  1596. - name: rumble
  1597. engine: rumble
  1598. shortcut: ru
  1599. base_url: https://rumble.com/
  1600. paging: true
  1601. categories: videos
  1602. disabled: true
  1603. - name: wordnik
  1604. engine: wordnik
  1605. shortcut: def
  1606. base_url: https://www.wordnik.com/
  1607. categories: [dictionaries]
  1608. timeout: 5.0
  1609. disabled: false
  1610. - name: woxikon.de synonyme
  1611. engine: xpath
  1612. shortcut: woxi
  1613. categories: [dictionaries]
  1614. timeout: 5.0
  1615. disabled: true
  1616. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1617. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1618. content_xpath: //div[@class="synonyms-list-group"]
  1619. title_xpath: //div[@class="upper-synonyms"]/a
  1620. no_result_for_http_status: [404]
  1621. about:
  1622. website: https://www.woxikon.de/
  1623. wikidata_id: # No Wikidata ID
  1624. use_official_api: false
  1625. require_api_key: false
  1626. results: HTML
  1627. language: de
  1628. - name: sjp.pwn
  1629. engine: sjp
  1630. shortcut: sjp
  1631. base_url: https://sjp.pwn.pl/
  1632. timeout: 5.0
  1633. disabled: true
  1634. # wikimini: online encyclopedia for children
  1635. # The fulltext and title parameter is necessary for Wikimini because
  1636. # sometimes it will not show the results and redirect instead
  1637. - name: wikimini
  1638. engine: xpath
  1639. shortcut: wkmn
  1640. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  1641. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  1642. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  1643. content_xpath: //li/div[@class="searchresult"]
  1644. categories: general
  1645. disabled: true
  1646. about:
  1647. website: https://wikimini.org/
  1648. wikidata_id: Q3568032
  1649. use_official_api: false
  1650. require_api_key: false
  1651. results: HTML
  1652. language: fr
  1653. - name: wttr.in
  1654. engine: wttr
  1655. shortcut: wttr
  1656. timeout: 9.0
  1657. - name: brave
  1658. shortcut: brave
  1659. engine: xpath
  1660. paging: true
  1661. time_range_support: true
  1662. first_page_num: 0
  1663. time_range_url: "&tf={time_range_val}"
  1664. search_url: https://search.brave.com/search?q={query}&offset={pageno}&spellcheck=1{time_range}
  1665. url_xpath: //a[@class="result-header"]/@href
  1666. title_xpath: //span[@class="snippet-title"]
  1667. content_xpath: //p[1][@class="snippet-description"]
  1668. suggestion_xpath: //div[@class="text-gray h6"]/a
  1669. time_range_map:
  1670. day: 'pd'
  1671. week: 'pw'
  1672. month: 'pm'
  1673. year: 'py'
  1674. categories: [general, web]
  1675. disabled: true
  1676. headers:
  1677. Accept-Encoding: gzip, deflate
  1678. about:
  1679. website: https://brave.com/search/
  1680. wikidata_id: Q107355971
  1681. use_official_api: false
  1682. require_api_key: false
  1683. results: HTML
  1684. - name: petalsearch
  1685. shortcut: pts
  1686. engine: xpath
  1687. paging: true
  1688. search_url: https://petalsearch.com/search?query={query}&pn={pageno}
  1689. results_xpath: //div[@class="webpage-content"]/div[@class="title-cont"]/a
  1690. url_xpath: ./@href
  1691. title_xpath: .
  1692. content_xpath: ../../div[@class="webpage-text"]
  1693. suggestion_xpath: //div[@class="related-search-items"]/a
  1694. first_page_num: 1
  1695. disabled: true
  1696. about:
  1697. website: https://petalsearch.com/
  1698. wikidata_id: Q104399280
  1699. use_official_api: false
  1700. require_api_key: false
  1701. results: HTML
  1702. - name: petalsearch images
  1703. engine: petal_images
  1704. shortcut: ptsi
  1705. disabled: true
  1706. timeout: 3.0
  1707. - name: petalsearch news
  1708. shortcut: ptsn
  1709. categories: news
  1710. engine: xpath
  1711. paging: true
  1712. search_url: https://petalsearch.com/search?channel=news&query={query}&pn={pageno}
  1713. results_xpath: //div[@class="news-container"]/div/div/div/a
  1714. url_xpath: ./@href
  1715. title_xpath: ./div
  1716. content_xpath: ../div[@class="news-text"]
  1717. thumbnail_xpath: ../../../../img/@src
  1718. first_page_num: 1
  1719. disabled: true
  1720. about:
  1721. website: https://petalsearch.com/
  1722. wikidata_id: Q104399280
  1723. use_official_api: false
  1724. require_api_key: false
  1725. results: HTML
  1726. - name: lib.rs
  1727. shortcut: lrs
  1728. engine: xpath
  1729. search_url: https://lib.rs/search?q={query}
  1730. results_xpath: /html/body/main/div/ol/li/a
  1731. url_xpath: ./@href
  1732. title_xpath: ./div[@class="h"]/h4
  1733. content_xpath: ./div[@class="h"]/p
  1734. categories: [it, packages]
  1735. disabled: true
  1736. about:
  1737. website: https://lib.rs
  1738. wikidata_id: Q113486010
  1739. use_official_api: false
  1740. require_api_key: false
  1741. results: HTML
  1742. - name: sourcehut
  1743. shortcut: srht
  1744. engine: xpath
  1745. paging: true
  1746. search_url: https://sr.ht/projects?page={pageno}&search={query}
  1747. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  1748. url_xpath: ./h4/a[2]/@href
  1749. title_xpath: ./h4/a[2]
  1750. content_xpath: ./p
  1751. first_page_num: 1
  1752. categories: [it, repos]
  1753. disabled: true
  1754. about:
  1755. website: https://sr.ht
  1756. wikidata_id: Q78514485
  1757. official_api_documentation: https://man.sr.ht/
  1758. use_official_api: false
  1759. require_api_key: false
  1760. results: HTML
  1761. # Doku engine lets you access to any Doku wiki instance:
  1762. # A public one or a privete/corporate one.
  1763. # - name: ubuntuwiki
  1764. # engine: doku
  1765. # shortcut: uw
  1766. # base_url: 'https://doc.ubuntu-fr.org'
  1767. # Be careful when enabling this engine if you are
  1768. # running a public instance. Do not expose any sensitive
  1769. # information. You can restrict access by configuring a list
  1770. # of access tokens under tokens.
  1771. # - name: git grep
  1772. # engine: command
  1773. # command: ['git', 'grep', '{{QUERY}}']
  1774. # shortcut: gg
  1775. # tokens: []
  1776. # disabled: true
  1777. # delimiter:
  1778. # chars: ':'
  1779. # keys: ['filepath', 'code']
  1780. # Be careful when enabling this engine if you are
  1781. # running a public instance. Do not expose any sensitive
  1782. # information. You can restrict access by configuring a list
  1783. # of access tokens under tokens.
  1784. # - name: locate
  1785. # engine: command
  1786. # command: ['locate', '{{QUERY}}']
  1787. # shortcut: loc
  1788. # tokens: []
  1789. # disabled: true
  1790. # delimiter:
  1791. # chars: ' '
  1792. # keys: ['line']
  1793. # Be careful when enabling this engine if you are
  1794. # running a public instance. Do not expose any sensitive
  1795. # information. You can restrict access by configuring a list
  1796. # of access tokens under tokens.
  1797. # - name: find
  1798. # engine: command
  1799. # command: ['find', '.', '-name', '{{QUERY}}']
  1800. # query_type: path
  1801. # shortcut: fnd
  1802. # tokens: []
  1803. # disabled: true
  1804. # delimiter:
  1805. # chars: ' '
  1806. # keys: ['line']
  1807. # Be careful when enabling this engine if you are
  1808. # running a public instance. Do not expose any sensitive
  1809. # information. You can restrict access by configuring a list
  1810. # of access tokens under tokens.
  1811. # - name: pattern search in files
  1812. # engine: command
  1813. # command: ['fgrep', '{{QUERY}}']
  1814. # shortcut: fgr
  1815. # tokens: []
  1816. # disabled: true
  1817. # delimiter:
  1818. # chars: ' '
  1819. # keys: ['line']
  1820. # Be careful when enabling this engine if you are
  1821. # running a public instance. Do not expose any sensitive
  1822. # information. You can restrict access by configuring a list
  1823. # of access tokens under tokens.
  1824. # - name: regex search in files
  1825. # engine: command
  1826. # command: ['grep', '{{QUERY}}']
  1827. # shortcut: gr
  1828. # tokens: []
  1829. # disabled: true
  1830. # delimiter:
  1831. # chars: ' '
  1832. # keys: ['line']
  1833. doi_resolvers:
  1834. oadoi.org: 'https://oadoi.org/'
  1835. doi.org: 'https://doi.org/'
  1836. doai.io: 'https://dissem.in/'
  1837. sci-hub.se: 'https://sci-hub.se/'
  1838. sci-hub.do: 'https://sci-hub.do/'
  1839. scihubtw.tw: 'https://scihubtw.tw/'
  1840. sci-hub.st: 'https://sci-hub.st/'
  1841. sci-hub.bar: 'https://sci-hub.bar/'
  1842. sci-hub.it.nf: 'https://sci-hub.it.nf/'
  1843. default_doi_resolver: 'oadoi.org'