settings.yml 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490
  1. general:
  2. # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
  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: false
  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. # custom:
  22. # maintainer: "Jon Doe"
  23. # # Custom entries in the footer: [title]: [link]
  24. # links:
  25. # Uptime: https://uptime.searxng.org/history/darmarit-org
  26. # About: "https://searxng.org"
  27. search:
  28. # Filter results. 0: None, 1: Moderate, 2: Strict
  29. safe_search: 0
  30. # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "yandex", "mwmbl",
  31. # "seznam", "startpage", "stract", "swisscows", "qwant", "wikipedia" - leave blank to turn it off
  32. # by default.
  33. autocomplete: ""
  34. # minimun characters to type before autocompleter starts
  35. autocomplete_min: 4
  36. # backend for the favicon near URL in search results.
  37. # Available resolvers: "allesedv", "duckduckgo", "google", "yandex" - leave blank to turn it off by default.
  38. favicon_resolver: ""
  39. # Default search language - leave blank to detect from browser information or
  40. # use codes from 'languages.py'
  41. default_lang: "auto"
  42. # max_page: 0 # if engine supports paging, 0 means unlimited numbers of pages
  43. # Available languages
  44. # languages:
  45. # - all
  46. # - en
  47. # - en-US
  48. # - de
  49. # - it-IT
  50. # - fr
  51. # - fr-BE
  52. # ban time in seconds after engine errors
  53. ban_time_on_fail: 5
  54. # max ban time in seconds after engine errors
  55. max_ban_time_on_fail: 120
  56. suspended_times:
  57. # Engine suspension time after error (in seconds; set to 0 to disable)
  58. # For error "Access denied" and "HTTP error [402, 403]"
  59. SearxEngineAccessDenied: 86400
  60. # For error "CAPTCHA"
  61. SearxEngineCaptcha: 86400
  62. # For error "Too many request" and "HTTP error 429"
  63. SearxEngineTooManyRequests: 3600
  64. # Cloudflare CAPTCHA
  65. cf_SearxEngineCaptcha: 1296000
  66. cf_SearxEngineAccessDenied: 86400
  67. # ReCAPTCHA
  68. recaptcha_SearxEngineCaptcha: 604800
  69. # remove format to deny access, use lower case.
  70. # formats: [html, csv, json, rss]
  71. formats:
  72. - html
  73. server:
  74. # Is overwritten by ${SEARXNG_PORT} and ${SEARXNG_BIND_ADDRESS}
  75. port: 8888
  76. bind_address: "127.0.0.1"
  77. # public URL of the instance, to ensure correct inbound links. Is overwritten
  78. # by ${SEARXNG_URL}.
  79. base_url: false # "http://example.com/location"
  80. # rate limit the number of request on the instance, block some bots.
  81. # Is overwritten by ${SEARXNG_LIMITER}
  82. limiter: false
  83. # enable features designed only for public instances.
  84. # Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}
  85. public_instance: false
  86. # If your instance owns a /etc/searxng/settings.yml file, then set the following
  87. # values there.
  88. secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
  89. # Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}
  90. image_proxy: false
  91. # 1.0 and 1.1 are supported
  92. http_protocol_version: "1.0"
  93. # POST queries are more secure as they don't show up in history but may cause
  94. # problems when using Firefox containers
  95. method: "POST"
  96. default_http_headers:
  97. X-Content-Type-Options: nosniff
  98. X-Download-Options: noopen
  99. X-Robots-Tag: noindex, nofollow
  100. Referrer-Policy: no-referrer
  101. redis:
  102. # URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
  103. # https://docs.searxng.org/admin/settings/settings_redis.html#settings-redis
  104. url: false
  105. ui:
  106. # Custom static path - leave it blank if you didn't change
  107. static_path: ""
  108. # Is overwritten by ${SEARXNG_STATIC_USE_HASH}.
  109. static_use_hash: false
  110. # Custom templates path - leave it blank if you didn't change
  111. templates_path: ""
  112. # query_in_title: When true, the result page's titles contains the query
  113. # it decreases the privacy, since the browser can records the page titles.
  114. query_in_title: false
  115. # infinite_scroll: When true, automatically loads the next page when scrolling to bottom of the current page.
  116. infinite_scroll: false
  117. # ui theme
  118. default_theme: simple
  119. # center the results ?
  120. center_alignment: false
  121. # URL prefix of the internet archive, don't forget trailing slash (if needed).
  122. # cache_url: "https://webcache.googleusercontent.com/search?q=cache:"
  123. # Default interface locale - leave blank to detect from browser information or
  124. # use codes from the 'locales' config section
  125. default_locale: ""
  126. # Open result links in a new tab by default
  127. # results_on_new_tab: false
  128. theme_args:
  129. # style of simple theme: auto, light, dark
  130. simple_style: auto
  131. # Perform search immediately if a category selected.
  132. # Disable to select multiple categories at once and start the search manually.
  133. search_on_category_select: true
  134. # Hotkeys: default or vim
  135. hotkeys: default
  136. # Lock arbitrary settings on the preferences page. To find the ID of the user
  137. # setting you want to lock, check the ID of the form on the page "preferences".
  138. #
  139. # preferences:
  140. # lock:
  141. # - language
  142. # - autocomplete
  143. # - method
  144. # - query_in_title
  145. # searx supports result proxification using an external service:
  146. # https://github.com/asciimoo/morty uncomment below section if you have running
  147. # morty proxy the key is base64 encoded (keep the !!binary notation)
  148. # Note: since commit af77ec3, morty accepts a base64 encoded key.
  149. #
  150. # result_proxy:
  151. # url: http://127.0.0.1:3000/
  152. # # the key is a base64 encoded string, the YAML !!binary prefix is optional
  153. # key: !!binary "your_morty_proxy_key"
  154. # # [true|false] enable the "proxy" button next to each result
  155. # proxify_results: true
  156. # communication with search engines
  157. #
  158. outgoing:
  159. # default timeout in seconds, can be override by engine
  160. request_timeout: 3.0
  161. # the maximum timeout in seconds
  162. # max_request_timeout: 10.0
  163. # suffix of searx_useragent, could contain information like an email address
  164. # to the administrator
  165. useragent_suffix: ""
  166. # The maximum number of concurrent connections that may be established.
  167. pool_connections: 100
  168. # Allow the connection pool to maintain keep-alive connections below this
  169. # point.
  170. pool_maxsize: 20
  171. # See https://www.python-httpx.org/http2/
  172. enable_http2: true
  173. # uncomment below section if you want to use a custom server certificate
  174. # see https://www.python-httpx.org/advanced/#changing-the-verification-defaults
  175. # and https://www.python-httpx.org/compatibility/#ssl-configuration
  176. # verify: ~/.mitmproxy/mitmproxy-ca-cert.cer
  177. #
  178. # uncomment below section if you want to use a proxyq see: SOCKS proxies
  179. # https://2.python-requests.org/en/latest/user/advanced/#proxies
  180. # are also supported: see
  181. # https://2.python-requests.org/en/latest/user/advanced/#socks
  182. #
  183. # proxies:
  184. # all://:
  185. # - http://proxy1:8080
  186. # - http://proxy2:8080
  187. #
  188. # using_tor_proxy: true
  189. #
  190. # Extra seconds to add in order to account for the time taken by the proxy
  191. #
  192. # extra_proxy_timeout: 10
  193. #
  194. # uncomment below section only if you have more than one network interface
  195. # which can be the source of outgoing search requests
  196. #
  197. # source_ips:
  198. # - 1.1.1.1
  199. # - 1.1.1.2
  200. # - fe80::/126
  201. # External plugin configuration, for more details see
  202. # https://docs.searxng.org/dev/plugins.html
  203. #
  204. # plugins:
  205. # - plugin1
  206. # - plugin2
  207. # - ...
  208. # Comment or un-comment plugin to activate / deactivate by default.
  209. #
  210. # enabled_plugins:
  211. # # these plugins are enabled if nothing is configured ..
  212. # - 'Basic Calculator'
  213. # - 'Hash plugin'
  214. # - 'Self Information'
  215. # - 'Tracker URL remover'
  216. # - 'Unit converter plugin'
  217. # - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
  218. # # these plugins are disabled if nothing is configured ..
  219. # - 'Hostnames plugin' # see 'hostnames' configuration below
  220. # - 'Open Access DOI rewrite'
  221. # - 'Tor check plugin'
  222. # Configuration of the "Hostnames plugin":
  223. #
  224. # hostnames:
  225. # replace:
  226. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  227. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  228. # '(.*\.)?reddit\.com$': 'teddit.example.com'
  229. # '(.*\.)?redd\.it$': 'teddit.example.com'
  230. # '(www\.)?twitter\.com$': 'nitter.example.com'
  231. # remove:
  232. # - '(.*\.)?facebook.com$'
  233. # low_priority:
  234. # - '(.*\.)?google(\..*)?$'
  235. # high_priority:
  236. # - '(.*\.)?wikipedia.org$'
  237. #
  238. # Alternatively you can use external files for configuring the "Hostnames plugin":
  239. #
  240. # hostnames:
  241. # replace: 'rewrite-hosts.yml'
  242. #
  243. # Content of 'rewrite-hosts.yml' (place the file in the same directory as 'settings.yml'):
  244. # '(.*\.)?youtube\.com$': 'invidious.example.com'
  245. # '(.*\.)?youtu\.be$': 'invidious.example.com'
  246. #
  247. checker:
  248. # disable checker when in debug mode
  249. off_when_debug: true
  250. # use "scheduling: false" to disable scheduling
  251. # scheduling: interval or int
  252. # to activate the scheduler:
  253. # * uncomment "scheduling" section
  254. # * add "cache2 = name=searxngcache,items=2000,blocks=2000,blocksize=4096,bitmap=1"
  255. # to your uwsgi.ini
  256. # scheduling:
  257. # start_after: [300, 1800] # delay to start the first run of the checker
  258. # every: [86400, 90000] # how often the checker runs
  259. # additional tests: only for the YAML anchors (see the engines section)
  260. #
  261. additional_tests:
  262. rosebud: &test_rosebud
  263. matrix:
  264. query: rosebud
  265. lang: en
  266. result_container:
  267. - not_empty
  268. - ['one_title_contains', 'citizen kane']
  269. test:
  270. - unique_results
  271. android: &test_android
  272. matrix:
  273. query: ['android']
  274. lang: ['en', 'de', 'fr', 'zh-CN']
  275. result_container:
  276. - not_empty
  277. - ['one_title_contains', 'google']
  278. test:
  279. - unique_results
  280. # tests: only for the YAML anchors (see the engines section)
  281. tests:
  282. infobox: &tests_infobox
  283. infobox:
  284. matrix:
  285. query: ["linux", "new york", "bbc"]
  286. result_container:
  287. - has_infobox
  288. categories_as_tabs:
  289. general:
  290. images:
  291. videos:
  292. news:
  293. map:
  294. music:
  295. it:
  296. science:
  297. files:
  298. social media:
  299. engines:
  300. - name: 9gag
  301. engine: 9gag
  302. shortcut: 9g
  303. disabled: true
  304. - name: alpine linux packages
  305. engine: alpinelinux
  306. disabled: true
  307. shortcut: alp
  308. - name: annas archive
  309. engine: annas_archive
  310. disabled: true
  311. shortcut: aa
  312. # - name: annas articles
  313. # engine: annas_archive
  314. # shortcut: aaa
  315. # # https://docs.searxng.org/dev/engines/online/annas_archive.html
  316. # aa_content: 'magazine' # book_fiction, book_unknown, book_nonfiction, book_comic
  317. # aa_ext: 'pdf' # pdf, epub, ..
  318. # aa_sort: oldest' # newest, oldest, largest, smallest
  319. - name: apk mirror
  320. engine: apkmirror
  321. timeout: 4.0
  322. shortcut: apkm
  323. disabled: true
  324. - name: apple app store
  325. engine: apple_app_store
  326. shortcut: aps
  327. disabled: true
  328. # Requires Tor
  329. - name: ahmia
  330. engine: ahmia
  331. categories: onions
  332. enable_http: true
  333. shortcut: ah
  334. - name: anaconda
  335. engine: xpath
  336. paging: true
  337. first_page_num: 0
  338. search_url: https://anaconda.org/search?q={query}&page={pageno}
  339. results_xpath: //tbody/tr
  340. url_xpath: ./td/h5/a[last()]/@href
  341. title_xpath: ./td/h5
  342. content_xpath: ./td[h5]/text()
  343. categories: it
  344. timeout: 6.0
  345. shortcut: conda
  346. disabled: true
  347. - name: arch linux wiki
  348. engine: archlinux
  349. shortcut: al
  350. - name: artic
  351. engine: artic
  352. shortcut: arc
  353. timeout: 4.0
  354. - name: arxiv
  355. engine: arxiv
  356. shortcut: arx
  357. timeout: 4.0
  358. - name: ask
  359. engine: ask
  360. shortcut: ask
  361. disabled: true
  362. # tmp suspended: dh key too small
  363. # - name: base
  364. # engine: base
  365. # shortcut: bs
  366. - name: bandcamp
  367. engine: bandcamp
  368. shortcut: bc
  369. categories: music
  370. - name: wikipedia
  371. engine: wikipedia
  372. shortcut: wp
  373. # add "list" to the array to get results in the results list
  374. display_type: ["infobox"]
  375. base_url: 'https://{language}.wikipedia.org/'
  376. categories: [general]
  377. - name: bilibili
  378. engine: bilibili
  379. shortcut: bil
  380. disabled: true
  381. - name: bing
  382. engine: bing
  383. shortcut: bi
  384. disabled: true
  385. - name: bing images
  386. engine: bing_images
  387. shortcut: bii
  388. - name: bing news
  389. engine: bing_news
  390. shortcut: bin
  391. - name: bing videos
  392. engine: bing_videos
  393. shortcut: biv
  394. - name: bitbucket
  395. engine: xpath
  396. paging: true
  397. search_url: https://bitbucket.org/repo/all/{pageno}?name={query}
  398. url_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  399. title_xpath: //article[@class="repo-summary"]//a[@class="repo-link"]
  400. content_xpath: //article[@class="repo-summary"]/p
  401. categories: [it, repos]
  402. timeout: 4.0
  403. disabled: true
  404. shortcut: bb
  405. about:
  406. website: https://bitbucket.org/
  407. wikidata_id: Q2493781
  408. official_api_documentation: https://developer.atlassian.com/bitbucket
  409. use_official_api: false
  410. require_api_key: false
  411. results: HTML
  412. - name: bpb
  413. engine: bpb
  414. shortcut: bpb
  415. disabled: true
  416. - name: btdigg
  417. engine: btdigg
  418. shortcut: bt
  419. disabled: true
  420. - name: openverse
  421. engine: openverse
  422. categories: images
  423. shortcut: opv
  424. - name: media.ccc.de
  425. engine: ccc_media
  426. shortcut: c3tv
  427. # We don't set language: de here because media.ccc.de is not just
  428. # for a German audience. It contains many English videos and many
  429. # German videos have English subtitles.
  430. disabled: true
  431. - name: chefkoch
  432. engine: chefkoch
  433. shortcut: chef
  434. # to show premium or plus results too:
  435. # skip_premium: false
  436. - name: cloudflareai
  437. engine: cloudflareai
  438. shortcut: cfai
  439. # get api token and accont id from https://developers.cloudflare.com/workers-ai/get-started/rest-api/
  440. cf_account_id: 'your_cf_accout_id'
  441. cf_ai_api: 'your_cf_api'
  442. # create your ai gateway by https://developers.cloudflare.com/ai-gateway/get-started/creating-gateway/
  443. cf_ai_gateway: 'your_cf_ai_gateway_name'
  444. # find the model name from https://developers.cloudflare.com/workers-ai/models/#text-generation
  445. cf_ai_model: 'ai_model_name'
  446. # custom your preferences
  447. # cf_ai_model_display_name: 'Cloudflare AI'
  448. # cf_ai_model_assistant: 'prompts_for_assistant_role'
  449. # cf_ai_model_system: 'prompts_for_system_role'
  450. timeout: 30
  451. disabled: true
  452. # - name: core.ac.uk
  453. # engine: core
  454. # categories: science
  455. # shortcut: cor
  456. # # get your API key from: https://core.ac.uk/api-keys/register/
  457. # api_key: 'unset'
  458. - name: cppreference
  459. engine: cppreference
  460. shortcut: cpp
  461. paging: false
  462. disabled: true
  463. - name: crossref
  464. engine: crossref
  465. shortcut: cr
  466. timeout: 30
  467. disabled: true
  468. - name: crowdview
  469. engine: json_engine
  470. shortcut: cv
  471. categories: general
  472. paging: false
  473. search_url: https://crowdview-next-js.onrender.com/api/search-v3?query={query}
  474. results_query: results
  475. url_query: link
  476. title_query: title
  477. content_query: snippet
  478. disabled: true
  479. about:
  480. website: https://crowdview.ai/
  481. - name: yep
  482. engine: yep
  483. shortcut: yep
  484. categories: general
  485. search_type: web
  486. timeout: 5
  487. disabled: true
  488. - name: yep images
  489. engine: yep
  490. shortcut: yepi
  491. categories: images
  492. search_type: images
  493. disabled: true
  494. - name: yep news
  495. engine: yep
  496. shortcut: yepn
  497. categories: news
  498. search_type: news
  499. disabled: true
  500. - name: curlie
  501. engine: xpath
  502. shortcut: cl
  503. categories: general
  504. disabled: true
  505. paging: true
  506. lang_all: ''
  507. search_url: https://curlie.org/search?q={query}&lang={lang}&start={pageno}&stime=92452189
  508. page_size: 20
  509. results_xpath: //div[@id="site-list-content"]/div[@class="site-item"]
  510. url_xpath: ./div[@class="title-and-desc"]/a/@href
  511. title_xpath: ./div[@class="title-and-desc"]/a/div
  512. content_xpath: ./div[@class="title-and-desc"]/div[@class="site-descr"]
  513. about:
  514. website: https://curlie.org/
  515. wikidata_id: Q60715723
  516. use_official_api: false
  517. require_api_key: false
  518. results: HTML
  519. - name: currency
  520. engine: currency_convert
  521. categories: general
  522. shortcut: cc
  523. - name: deezer
  524. engine: deezer
  525. shortcut: dz
  526. disabled: true
  527. - name: destatis
  528. engine: destatis
  529. shortcut: destat
  530. disabled: true
  531. - name: deviantart
  532. engine: deviantart
  533. shortcut: da
  534. timeout: 3.0
  535. - name: ddg definitions
  536. engine: duckduckgo_definitions
  537. shortcut: ddd
  538. weight: 2
  539. disabled: true
  540. tests: *tests_infobox
  541. # cloudflare protected
  542. # - name: digbt
  543. # engine: digbt
  544. # shortcut: dbt
  545. # timeout: 6.0
  546. # disabled: true
  547. - name: docker hub
  548. engine: docker_hub
  549. shortcut: dh
  550. categories: [it, packages]
  551. - name: encyclosearch
  552. engine: json_engine
  553. shortcut: es
  554. categories: general
  555. paging: true
  556. search_url: https://encyclosearch.org/encyclosphere/search?q={query}&page={pageno}&resultsPerPage=15
  557. results_query: Results
  558. url_query: SourceURL
  559. title_query: Title
  560. content_query: Description
  561. disabled: true
  562. about:
  563. website: https://encyclosearch.org
  564. official_api_documentation: https://encyclosearch.org/docs/#/rest-api
  565. use_official_api: true
  566. require_api_key: false
  567. results: JSON
  568. - name: erowid
  569. engine: xpath
  570. paging: true
  571. first_page_num: 0
  572. page_size: 30
  573. search_url: https://www.erowid.org/search.php?q={query}&s={pageno}
  574. url_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  575. title_xpath: //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  576. content_xpath: //dl[@class="results-list"]/dd[@class="result-details"]
  577. categories: []
  578. shortcut: ew
  579. disabled: true
  580. about:
  581. website: https://www.erowid.org/
  582. wikidata_id: Q1430691
  583. official_api_documentation:
  584. use_official_api: false
  585. require_api_key: false
  586. results: HTML
  587. # - name: elasticsearch
  588. # shortcut: es
  589. # engine: elasticsearch
  590. # base_url: http://localhost:9200
  591. # username: elastic
  592. # password: changeme
  593. # index: my-index
  594. # # available options: match, simple_query_string, term, terms, custom
  595. # query_type: match
  596. # # if query_type is set to custom, provide your query here
  597. # #custom_query_json: {"query":{"match_all": {}}}
  598. # #show_metadata: false
  599. # disabled: true
  600. - name: wikidata
  601. engine: wikidata
  602. shortcut: wd
  603. timeout: 3.0
  604. weight: 2
  605. # add "list" to the array to get results in the results list
  606. display_type: ["infobox"]
  607. tests: *tests_infobox
  608. categories: [general]
  609. - name: duckduckgo
  610. engine: duckduckgo
  611. shortcut: ddg
  612. - name: duckduckgo images
  613. engine: duckduckgo_extra
  614. categories: [images, web]
  615. ddg_category: images
  616. shortcut: ddi
  617. disabled: true
  618. - name: duckduckgo videos
  619. engine: duckduckgo_extra
  620. categories: [videos, web]
  621. ddg_category: videos
  622. shortcut: ddv
  623. disabled: true
  624. - name: duckduckgo news
  625. engine: duckduckgo_extra
  626. categories: [news, web]
  627. ddg_category: news
  628. shortcut: ddn
  629. disabled: true
  630. - name: duckduckgo weather
  631. engine: duckduckgo_weather
  632. shortcut: ddw
  633. disabled: true
  634. - name: apple maps
  635. engine: apple_maps
  636. shortcut: apm
  637. disabled: true
  638. timeout: 5.0
  639. - name: emojipedia
  640. engine: emojipedia
  641. timeout: 4.0
  642. shortcut: em
  643. disabled: true
  644. - name: tineye
  645. engine: tineye
  646. shortcut: tin
  647. timeout: 9.0
  648. disabled: true
  649. - name: etymonline
  650. engine: xpath
  651. paging: true
  652. search_url: https://etymonline.com/search?page={pageno}&q={query}
  653. url_xpath: //a[contains(@class, "word__name--")]/@href
  654. title_xpath: //a[contains(@class, "word__name--")]
  655. content_xpath: //section[contains(@class, "word__defination")]
  656. first_page_num: 1
  657. shortcut: et
  658. categories: [dictionaries]
  659. about:
  660. website: https://www.etymonline.com/
  661. wikidata_id: Q1188617
  662. official_api_documentation:
  663. use_official_api: false
  664. require_api_key: false
  665. results: HTML
  666. # - name: ebay
  667. # engine: ebay
  668. # shortcut: eb
  669. # base_url: 'https://www.ebay.com'
  670. # disabled: true
  671. # timeout: 5
  672. - name: 1x
  673. engine: www1x
  674. shortcut: 1x
  675. timeout: 3.0
  676. disabled: true
  677. - name: fdroid
  678. engine: fdroid
  679. shortcut: fd
  680. disabled: true
  681. - name: findthatmeme
  682. engine: findthatmeme
  683. shortcut: ftm
  684. disabled: true
  685. - name: flickr
  686. categories: images
  687. shortcut: fl
  688. # You can use the engine using the official stable API, but you need an API
  689. # key, see: https://www.flickr.com/services/apps/create/
  690. # engine: flickr
  691. # api_key: 'apikey' # required!
  692. # Or you can use the html non-stable engine, activated by default
  693. engine: flickr_noapi
  694. - name: free software directory
  695. engine: mediawiki
  696. shortcut: fsd
  697. categories: [it, software wikis]
  698. base_url: https://directory.fsf.org/
  699. search_type: title
  700. timeout: 5.0
  701. disabled: true
  702. about:
  703. website: https://directory.fsf.org/
  704. wikidata_id: Q2470288
  705. # - name: freesound
  706. # engine: freesound
  707. # shortcut: fnd
  708. # disabled: true
  709. # timeout: 15.0
  710. # API key required, see: https://freesound.org/docs/api/overview.html
  711. # api_key: MyAPIkey
  712. - name: frinkiac
  713. engine: frinkiac
  714. shortcut: frk
  715. disabled: true
  716. - name: fyyd
  717. engine: fyyd
  718. shortcut: fy
  719. timeout: 8.0
  720. disabled: true
  721. - name: geizhals
  722. engine: geizhals
  723. shortcut: geiz
  724. disabled: true
  725. - name: genius
  726. engine: genius
  727. shortcut: gen
  728. - name: gentoo
  729. engine: mediawiki
  730. shortcut: ge
  731. categories: ["it", "software wikis"]
  732. base_url: "https://wiki.gentoo.org/"
  733. api_path: "api.php"
  734. search_type: text
  735. timeout: 10
  736. - name: gitlab
  737. engine: gitlab
  738. base_url: https://gitlab.com
  739. shortcut: gl
  740. disabled: true
  741. about:
  742. website: https://gitlab.com/
  743. wikidata_id: Q16639197
  744. # - name: gnome
  745. # engine: gitlab
  746. # base_url: https://gitlab.gnome.org
  747. # shortcut: gn
  748. # about:
  749. # website: https://gitlab.gnome.org
  750. # wikidata_id: Q44316
  751. - name: github
  752. engine: github
  753. shortcut: gh
  754. - name: codeberg
  755. # https://docs.searxng.org/dev/engines/online/gitea.html
  756. engine: gitea
  757. base_url: https://codeberg.org
  758. shortcut: cb
  759. disabled: true
  760. - name: gitea.com
  761. engine: gitea
  762. base_url: https://gitea.com
  763. shortcut: gitea
  764. disabled: true
  765. - name: goodreads
  766. engine: goodreads
  767. shortcut: good
  768. timeout: 4.0
  769. disabled: true
  770. - name: google
  771. engine: google
  772. shortcut: go
  773. # additional_tests:
  774. # android: *test_android
  775. - name: google images
  776. engine: google_images
  777. shortcut: goi
  778. # additional_tests:
  779. # android: *test_android
  780. # dali:
  781. # matrix:
  782. # query: ['Dali Christ']
  783. # lang: ['en', 'de', 'fr', 'zh-CN']
  784. # result_container:
  785. # - ['one_title_contains', 'Salvador']
  786. - name: google news
  787. engine: google_news
  788. shortcut: gon
  789. # additional_tests:
  790. # android: *test_android
  791. - name: google videos
  792. engine: google_videos
  793. shortcut: gov
  794. # additional_tests:
  795. # android: *test_android
  796. - name: google scholar
  797. engine: google_scholar
  798. shortcut: gos
  799. - name: google play apps
  800. engine: google_play
  801. categories: [files, apps]
  802. shortcut: gpa
  803. play_categ: apps
  804. disabled: true
  805. - name: google play movies
  806. engine: google_play
  807. categories: videos
  808. shortcut: gpm
  809. play_categ: movies
  810. disabled: true
  811. - name: material icons
  812. engine: material_icons
  813. categories: images
  814. shortcut: mi
  815. disabled: true
  816. - name: habrahabr
  817. engine: xpath
  818. paging: true
  819. search_url: https://habr.com/en/search/page{pageno}/?q={query}
  820. results_xpath: //article[contains(@class, "tm-articles-list__item")]
  821. url_xpath: .//a[@class="tm-title__link"]/@href
  822. title_xpath: .//a[@class="tm-title__link"]
  823. content_xpath: .//div[contains(@class, "article-formatted-body")]
  824. categories: it
  825. timeout: 4.0
  826. disabled: true
  827. shortcut: habr
  828. about:
  829. website: https://habr.com/
  830. wikidata_id: Q4494434
  831. official_api_documentation: https://habr.com/en/docs/help/api/
  832. use_official_api: false
  833. require_api_key: false
  834. results: HTML
  835. - name: hackernews
  836. engine: hackernews
  837. shortcut: hn
  838. disabled: true
  839. - name: hex
  840. engine: hex
  841. shortcut: hex
  842. disabled: true
  843. # Valid values: name inserted_at updated_at total_downloads recent_downloads
  844. sort_criteria: "recent_downloads"
  845. page_size: 10
  846. - name: crates.io
  847. engine: crates
  848. shortcut: crates
  849. disabled: true
  850. timeout: 6.0
  851. - name: hoogle
  852. engine: xpath
  853. search_url: https://hoogle.haskell.org/?hoogle={query}
  854. results_xpath: '//div[@class="result"]'
  855. title_xpath: './/div[@class="ans"]//a'
  856. url_xpath: './/div[@class="ans"]//a/@href'
  857. content_xpath: './/div[@class="from"]'
  858. page_size: 20
  859. categories: [it, packages]
  860. shortcut: ho
  861. about:
  862. website: https://hoogle.haskell.org/
  863. wikidata_id: Q34010
  864. official_api_documentation: https://hackage.haskell.org/api
  865. use_official_api: false
  866. require_api_key: false
  867. results: JSON
  868. - name: imdb
  869. engine: imdb
  870. shortcut: imdb
  871. timeout: 6.0
  872. disabled: true
  873. - name: imgur
  874. engine: imgur
  875. shortcut: img
  876. disabled: true
  877. - name: ina
  878. engine: ina
  879. shortcut: in
  880. timeout: 6.0
  881. disabled: true
  882. - name: invidious
  883. engine: invidious
  884. # Instanes will be selected randomly, see https://api.invidious.io/ for
  885. # instances that are stable (good uptime) and close to you.
  886. base_url:
  887. - https://invidious.io.lol
  888. - https://invidious.fdn.fr
  889. - https://yt.artemislena.eu
  890. - https://invidious.tiekoetter.com
  891. - https://invidious.flokinet.to
  892. - https://vid.puffyan.us
  893. - https://invidious.privacydev.net
  894. - https://inv.tux.pizza
  895. shortcut: iv
  896. timeout: 3.0
  897. disabled: true
  898. - name: jisho
  899. engine: jisho
  900. shortcut: js
  901. timeout: 3.0
  902. disabled: true
  903. - name: kickass
  904. engine: kickass
  905. base_url:
  906. - https://kickasstorrents.to
  907. - https://kickasstorrents.cr
  908. - https://kickasstorrent.cr
  909. - https://kickass.sx
  910. - https://kat.am
  911. shortcut: kc
  912. timeout: 4.0
  913. - name: lemmy communities
  914. engine: lemmy
  915. lemmy_type: Communities
  916. shortcut: leco
  917. - name: lemmy users
  918. engine: lemmy
  919. network: lemmy communities
  920. lemmy_type: Users
  921. shortcut: leus
  922. - name: lemmy posts
  923. engine: lemmy
  924. network: lemmy communities
  925. lemmy_type: Posts
  926. shortcut: lepo
  927. - name: lemmy comments
  928. engine: lemmy
  929. network: lemmy communities
  930. lemmy_type: Comments
  931. shortcut: lecom
  932. - name: library genesis
  933. engine: xpath
  934. # search_url: https://libgen.is/search.php?req={query}
  935. search_url: https://libgen.rs/search.php?req={query}
  936. url_xpath: //a[contains(@href,"book/index.php?md5")]/@href
  937. title_xpath: //a[contains(@href,"book/")]/text()[1]
  938. content_xpath: //td/a[1][contains(@href,"=author")]/text()
  939. categories: files
  940. timeout: 7.0
  941. disabled: true
  942. shortcut: lg
  943. about:
  944. website: https://libgen.fun/
  945. wikidata_id: Q22017206
  946. official_api_documentation:
  947. use_official_api: false
  948. require_api_key: false
  949. results: HTML
  950. - name: z-library
  951. engine: zlibrary
  952. shortcut: zlib
  953. categories: files
  954. timeout: 7.0
  955. - name: library of congress
  956. engine: loc
  957. shortcut: loc
  958. categories: images
  959. - name: libretranslate
  960. engine: libretranslate
  961. # https://github.com/LibreTranslate/LibreTranslate?tab=readme-ov-file#mirrors
  962. base_url:
  963. - https://translate.terraprint.co
  964. - https://trans.zillyhuhn.com
  965. # api_key: abc123
  966. shortcut: lt
  967. disabled: true
  968. - name: lingva
  969. engine: lingva
  970. shortcut: lv
  971. # set lingva instance in url, by default it will use the official instance
  972. # url: https://lingva.thedaviddelta.com
  973. - name: lobste.rs
  974. engine: xpath
  975. search_url: https://lobste.rs/search?q={query}&what=stories&order=relevance
  976. results_xpath: //li[contains(@class, "story")]
  977. url_xpath: .//a[@class="u-url"]/@href
  978. title_xpath: .//a[@class="u-url"]
  979. content_xpath: .//a[@class="domain"]
  980. categories: it
  981. shortcut: lo
  982. timeout: 5.0
  983. disabled: true
  984. about:
  985. website: https://lobste.rs/
  986. wikidata_id: Q60762874
  987. official_api_documentation:
  988. use_official_api: false
  989. require_api_key: false
  990. results: HTML
  991. - name: mastodon users
  992. engine: mastodon
  993. mastodon_type: accounts
  994. base_url: https://mastodon.social
  995. shortcut: mau
  996. - name: mastodon hashtags
  997. engine: mastodon
  998. mastodon_type: hashtags
  999. base_url: https://mastodon.social
  1000. shortcut: mah
  1001. # - name: matrixrooms
  1002. # engine: mrs
  1003. # # https://docs.searxng.org/dev/engines/online/mrs.html
  1004. # # base_url: https://mrs-api-host
  1005. # shortcut: mtrx
  1006. # disabled: true
  1007. - name: mdn
  1008. shortcut: mdn
  1009. engine: json_engine
  1010. categories: [it]
  1011. paging: true
  1012. search_url: https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
  1013. results_query: documents
  1014. url_query: mdn_url
  1015. url_prefix: https://developer.mozilla.org
  1016. title_query: title
  1017. content_query: summary
  1018. about:
  1019. website: https://developer.mozilla.org
  1020. wikidata_id: Q3273508
  1021. official_api_documentation: null
  1022. use_official_api: false
  1023. require_api_key: false
  1024. results: JSON
  1025. - name: metacpan
  1026. engine: metacpan
  1027. shortcut: cpan
  1028. disabled: true
  1029. number_of_results: 20
  1030. # - name: meilisearch
  1031. # engine: meilisearch
  1032. # shortcut: mes
  1033. # enable_http: true
  1034. # base_url: http://localhost:7700
  1035. # index: my-index
  1036. - name: mixcloud
  1037. engine: mixcloud
  1038. shortcut: mc
  1039. # MongoDB engine
  1040. # Required dependency: pymongo
  1041. # - name: mymongo
  1042. # engine: mongodb
  1043. # shortcut: md
  1044. # exact_match_only: false
  1045. # host: '127.0.0.1'
  1046. # port: 27017
  1047. # enable_http: true
  1048. # results_per_page: 20
  1049. # database: 'business'
  1050. # collection: 'reviews' # name of the db collection
  1051. # key: 'name' # key in the collection to search for
  1052. - name: mozhi
  1053. engine: mozhi
  1054. base_url:
  1055. - https://mozhi.aryak.me
  1056. - https://translate.bus-hit.me
  1057. - https://nyc1.mz.ggtyler.dev
  1058. # mozhi_engine: google - see https://mozhi.aryak.me for supported engines
  1059. timeout: 4.0
  1060. shortcut: mz
  1061. disabled: true
  1062. - name: mwmbl
  1063. engine: mwmbl
  1064. # api_url: https://api.mwmbl.org
  1065. shortcut: mwm
  1066. disabled: true
  1067. - name: npm
  1068. engine: npm
  1069. shortcut: npm
  1070. timeout: 5.0
  1071. disabled: true
  1072. - name: nyaa
  1073. engine: nyaa
  1074. shortcut: nt
  1075. disabled: true
  1076. - name: mankier
  1077. engine: json_engine
  1078. search_url: https://www.mankier.com/api/v2/mans/?q={query}
  1079. results_query: results
  1080. url_query: url
  1081. title_query: name
  1082. content_query: description
  1083. categories: it
  1084. shortcut: man
  1085. about:
  1086. website: https://www.mankier.com/
  1087. official_api_documentation: https://www.mankier.com/api
  1088. use_official_api: true
  1089. require_api_key: false
  1090. results: JSON
  1091. # read https://docs.searxng.org/dev/engines/online/mullvad_leta.html
  1092. # - name: mullvadleta
  1093. # engine: mullvad_leta
  1094. # leta_engine: google # choose one of the following: google, brave
  1095. # use_cache: true # Only 100 non-cache searches per day, suggested only for private instances
  1096. # search_url: https://leta.mullvad.net
  1097. # categories: [general, web]
  1098. # shortcut: ml
  1099. - name: odysee
  1100. engine: odysee
  1101. shortcut: od
  1102. disabled: true
  1103. - name: openairedatasets
  1104. engine: json_engine
  1105. paging: true
  1106. search_url: https://api.openaire.eu/search/datasets?format=json&page={pageno}&size=10&title={query}
  1107. results_query: response/results/result
  1108. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1109. title_query: metadata/oaf:entity/oaf:result/title/$
  1110. content_query: metadata/oaf:entity/oaf:result/description/$
  1111. content_html_to_text: true
  1112. categories: "science"
  1113. shortcut: oad
  1114. timeout: 5.0
  1115. about:
  1116. website: https://www.openaire.eu/
  1117. wikidata_id: Q25106053
  1118. official_api_documentation: https://api.openaire.eu/
  1119. use_official_api: false
  1120. require_api_key: false
  1121. results: JSON
  1122. - name: openairepublications
  1123. engine: json_engine
  1124. paging: true
  1125. search_url: https://api.openaire.eu/search/publications?format=json&page={pageno}&size=10&title={query}
  1126. results_query: response/results/result
  1127. url_query: metadata/oaf:entity/oaf:result/children/instance/webresource/url/$
  1128. title_query: metadata/oaf:entity/oaf:result/title/$
  1129. content_query: metadata/oaf:entity/oaf:result/description/$
  1130. content_html_to_text: true
  1131. categories: science
  1132. shortcut: oap
  1133. timeout: 5.0
  1134. about:
  1135. website: https://www.openaire.eu/
  1136. wikidata_id: Q25106053
  1137. official_api_documentation: https://api.openaire.eu/
  1138. use_official_api: false
  1139. require_api_key: false
  1140. results: JSON
  1141. - name: openlibrary
  1142. engine: openlibrary
  1143. shortcut: ol
  1144. timeout: 5
  1145. disabled: true
  1146. - name: openmeteo
  1147. engine: open_meteo
  1148. shortcut: om
  1149. disabled: true
  1150. # - name: opensemanticsearch
  1151. # engine: opensemantic
  1152. # shortcut: oss
  1153. # base_url: 'http://localhost:8983/solr/opensemanticsearch/'
  1154. - name: openstreetmap
  1155. engine: openstreetmap
  1156. shortcut: osm
  1157. - name: openrepos
  1158. engine: xpath
  1159. paging: true
  1160. search_url: https://openrepos.net/search/node/{query}?page={pageno}
  1161. url_xpath: //li[@class="search-result"]//h3[@class="title"]/a/@href
  1162. title_xpath: //li[@class="search-result"]//h3[@class="title"]/a
  1163. content_xpath: //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  1164. categories: files
  1165. timeout: 4.0
  1166. disabled: true
  1167. shortcut: or
  1168. about:
  1169. website: https://openrepos.net/
  1170. wikidata_id:
  1171. official_api_documentation:
  1172. use_official_api: false
  1173. require_api_key: false
  1174. results: HTML
  1175. - name: packagist
  1176. engine: json_engine
  1177. paging: true
  1178. search_url: https://packagist.org/search.json?q={query}&page={pageno}
  1179. results_query: results
  1180. url_query: url
  1181. title_query: name
  1182. content_query: description
  1183. categories: [it, packages]
  1184. disabled: true
  1185. timeout: 5.0
  1186. shortcut: pack
  1187. about:
  1188. website: https://packagist.org
  1189. wikidata_id: Q108311377
  1190. official_api_documentation: https://packagist.org/apidoc
  1191. use_official_api: true
  1192. require_api_key: false
  1193. results: JSON
  1194. - name: pdbe
  1195. engine: pdbe
  1196. shortcut: pdb
  1197. # Hide obsolete PDB entries. Default is not to hide obsolete structures
  1198. # hide_obsolete: false
  1199. - name: photon
  1200. engine: photon
  1201. shortcut: ph
  1202. - name: pinterest
  1203. engine: pinterest
  1204. shortcut: pin
  1205. - name: piped
  1206. engine: piped
  1207. shortcut: ppd
  1208. categories: videos
  1209. piped_filter: videos
  1210. timeout: 3.0
  1211. # URL to use as link and for embeds
  1212. frontend_url: https://srv.piped.video
  1213. # Instance will be selected randomly, for more see https://piped-instances.kavin.rocks/
  1214. backend_url:
  1215. - https://pipedapi.kavin.rocks
  1216. - https://pipedapi-libre.kavin.rocks
  1217. - https://pipedapi.adminforge.de
  1218. - name: piped.music
  1219. engine: piped
  1220. network: piped
  1221. shortcut: ppdm
  1222. categories: music
  1223. piped_filter: music_songs
  1224. timeout: 3.0
  1225. - name: piratebay
  1226. engine: piratebay
  1227. shortcut: tpb
  1228. # You may need to change this URL to a proxy if piratebay is blocked in your
  1229. # country
  1230. url: https://thepiratebay.org/
  1231. timeout: 3.0
  1232. - name: pixiv
  1233. shortcut: pv
  1234. engine: pixiv
  1235. disabled: true
  1236. inactive: true
  1237. pixiv_image_proxies:
  1238. - https://pximg.example.org
  1239. # A proxy is required to load the images. Hosting an image proxy server
  1240. # for Pixiv:
  1241. # --> https://pixivfe.pages.dev/hosting-image-proxy-server/
  1242. # Proxies from public instances. Ask the public instances owners if they
  1243. # agree to receive traffic from SearXNG!
  1244. # --> https://codeberg.org/VnPower/PixivFE#instances
  1245. # --> https://github.com/searxng/searxng/pull/3192#issuecomment-1941095047
  1246. # image proxy of https://pixiv.cat
  1247. # - https://i.pixiv.cat
  1248. # image proxy of https://www.pixiv.pics
  1249. # - https://pximg.cocomi.eu.org
  1250. # image proxy of https://pixivfe.exozy.me
  1251. # - https://pximg.exozy.me
  1252. # image proxy of https://pixivfe.ducks.party
  1253. # - https://pixiv.ducks.party
  1254. # image proxy of https://pixiv.perennialte.ch
  1255. # - https://pximg.perennialte.ch
  1256. - name: podcastindex
  1257. engine: podcastindex
  1258. shortcut: podcast
  1259. # Required dependency: psychopg2
  1260. # - name: postgresql
  1261. # engine: postgresql
  1262. # database: postgres
  1263. # username: postgres
  1264. # password: postgres
  1265. # limit: 10
  1266. # query_str: 'SELECT * from my_table WHERE my_column = %(query)s'
  1267. # shortcut : psql
  1268. - name: presearch
  1269. engine: presearch
  1270. search_type: search
  1271. categories: [general, web]
  1272. shortcut: ps
  1273. timeout: 4.0
  1274. disabled: true
  1275. - name: presearch images
  1276. engine: presearch
  1277. network: presearch
  1278. search_type: images
  1279. categories: [images, web]
  1280. timeout: 4.0
  1281. shortcut: psimg
  1282. disabled: true
  1283. - name: presearch videos
  1284. engine: presearch
  1285. network: presearch
  1286. search_type: videos
  1287. categories: [general, web]
  1288. timeout: 4.0
  1289. shortcut: psvid
  1290. disabled: true
  1291. - name: presearch news
  1292. engine: presearch
  1293. network: presearch
  1294. search_type: news
  1295. categories: [news, web]
  1296. timeout: 4.0
  1297. shortcut: psnews
  1298. disabled: true
  1299. - name: pub.dev
  1300. engine: xpath
  1301. shortcut: pd
  1302. search_url: https://pub.dev/packages?q={query}&page={pageno}
  1303. paging: true
  1304. results_xpath: //div[contains(@class,"packages-item")]
  1305. url_xpath: ./div/h3/a/@href
  1306. title_xpath: ./div/h3/a
  1307. content_xpath: ./div/div/div[contains(@class,"packages-description")]/span
  1308. categories: [packages, it]
  1309. timeout: 3.0
  1310. disabled: true
  1311. first_page_num: 1
  1312. about:
  1313. website: https://pub.dev/
  1314. official_api_documentation: https://pub.dev/help/api
  1315. use_official_api: false
  1316. require_api_key: false
  1317. results: HTML
  1318. - name: pubmed
  1319. engine: pubmed
  1320. shortcut: pub
  1321. timeout: 3.0
  1322. - name: pypi
  1323. shortcut: pypi
  1324. engine: pypi
  1325. - name: qwant
  1326. qwant_categ: web
  1327. engine: qwant
  1328. shortcut: qw
  1329. categories: [general, web]
  1330. additional_tests:
  1331. rosebud: *test_rosebud
  1332. - name: qwant news
  1333. qwant_categ: news
  1334. engine: qwant
  1335. shortcut: qwn
  1336. categories: news
  1337. network: qwant
  1338. - name: qwant images
  1339. qwant_categ: images
  1340. engine: qwant
  1341. shortcut: qwi
  1342. categories: [images, web]
  1343. network: qwant
  1344. - name: qwant videos
  1345. qwant_categ: videos
  1346. engine: qwant
  1347. shortcut: qwv
  1348. categories: [videos, web]
  1349. network: qwant
  1350. # - name: library
  1351. # engine: recoll
  1352. # shortcut: lib
  1353. # base_url: 'https://recoll.example.org/'
  1354. # search_dir: ''
  1355. # mount_prefix: /export
  1356. # dl_prefix: 'https://download.example.org'
  1357. # timeout: 30.0
  1358. # categories: files
  1359. # disabled: true
  1360. # - name: recoll library reference
  1361. # engine: recoll
  1362. # base_url: 'https://recoll.example.org/'
  1363. # search_dir: reference
  1364. # mount_prefix: /export
  1365. # dl_prefix: 'https://download.example.org'
  1366. # shortcut: libr
  1367. # timeout: 30.0
  1368. # categories: files
  1369. # disabled: true
  1370. - name: radio browser
  1371. engine: radio_browser
  1372. shortcut: rb
  1373. - name: reddit
  1374. engine: reddit
  1375. shortcut: re
  1376. page_size: 25
  1377. disabled: true
  1378. - name: right dao
  1379. engine: xpath
  1380. paging: true
  1381. page_size: 12
  1382. search_url: https://rightdao.com/search?q={query}&start={pageno}
  1383. results_xpath: //div[contains(@class, "description")]
  1384. url_xpath: ../div[contains(@class, "title")]/a/@href
  1385. title_xpath: ../div[contains(@class, "title")]
  1386. content_xpath: .
  1387. categories: general
  1388. shortcut: rd
  1389. disabled: true
  1390. about:
  1391. website: https://rightdao.com/
  1392. use_official_api: false
  1393. require_api_key: false
  1394. results: HTML
  1395. - name: rottentomatoes
  1396. engine: rottentomatoes
  1397. shortcut: rt
  1398. disabled: true
  1399. # Required dependency: redis
  1400. # - name: myredis
  1401. # shortcut : rds
  1402. # engine: redis_server
  1403. # exact_match_only: false
  1404. # host: '127.0.0.1'
  1405. # port: 6379
  1406. # enable_http: true
  1407. # password: ''
  1408. # db: 0
  1409. # tmp suspended: bad certificate
  1410. # - name: scanr structures
  1411. # shortcut: scs
  1412. # engine: scanr_structures
  1413. # disabled: true
  1414. - name: searchmysite
  1415. engine: xpath
  1416. shortcut: sms
  1417. categories: general
  1418. paging: true
  1419. search_url: https://searchmysite.net/search/?q={query}&page={pageno}
  1420. results_xpath: //div[contains(@class,'search-result')]
  1421. url_xpath: .//a[contains(@class,'result-link')]/@href
  1422. title_xpath: .//span[contains(@class,'result-title-txt')]/text()
  1423. content_xpath: ./p[@id='result-hightlight']
  1424. disabled: true
  1425. about:
  1426. website: https://searchmysite.net
  1427. - name: sepiasearch
  1428. engine: sepiasearch
  1429. shortcut: sep
  1430. - name: soundcloud
  1431. engine: soundcloud
  1432. shortcut: sc
  1433. - name: stackoverflow
  1434. engine: stackexchange
  1435. shortcut: st
  1436. api_site: 'stackoverflow'
  1437. categories: [it, q&a]
  1438. - name: askubuntu
  1439. engine: stackexchange
  1440. shortcut: ubuntu
  1441. api_site: 'askubuntu'
  1442. categories: [it, q&a]
  1443. - name: superuser
  1444. engine: stackexchange
  1445. shortcut: su
  1446. api_site: 'superuser'
  1447. categories: [it, q&a]
  1448. - name: discuss.python
  1449. engine: discourse
  1450. shortcut: dpy
  1451. base_url: 'https://discuss.python.org'
  1452. categories: [it, q&a]
  1453. disabled: true
  1454. - name: caddy.community
  1455. engine: discourse
  1456. shortcut: caddy
  1457. base_url: 'https://caddy.community'
  1458. categories: [it, q&a]
  1459. disabled: true
  1460. - name: pi-hole.community
  1461. engine: discourse
  1462. shortcut: pi
  1463. categories: [it, q&a]
  1464. base_url: 'https://discourse.pi-hole.net'
  1465. disabled: true
  1466. - name: searchcode code
  1467. engine: searchcode_code
  1468. shortcut: scc
  1469. disabled: true
  1470. # - name: searx
  1471. # engine: searx_engine
  1472. # shortcut: se
  1473. # instance_urls :
  1474. # - http://127.0.0.1:8888/
  1475. # - ...
  1476. # disabled: true
  1477. - name: semantic scholar
  1478. engine: semantic_scholar
  1479. disabled: true
  1480. shortcut: se
  1481. # Spotify needs API credentials
  1482. # - name: spotify
  1483. # engine: spotify
  1484. # shortcut: stf
  1485. # api_client_id: *******
  1486. # api_client_secret: *******
  1487. # - name: solr
  1488. # engine: solr
  1489. # shortcut: slr
  1490. # base_url: http://localhost:8983
  1491. # collection: collection_name
  1492. # sort: '' # sorting: asc or desc
  1493. # field_list: '' # comma separated list of field names to display on the UI
  1494. # default_fields: '' # default field to query
  1495. # query_fields: '' # query fields
  1496. # enable_http: true
  1497. # - name: springer nature
  1498. # engine: springer
  1499. # # get your API key from: https://dev.springernature.com/signup
  1500. # # working API key, for test & debug: "a69685087d07eca9f13db62f65b8f601"
  1501. # api_key: 'unset'
  1502. # shortcut: springer
  1503. # timeout: 15.0
  1504. - name: startpage
  1505. engine: startpage
  1506. shortcut: sp
  1507. timeout: 6.0
  1508. disabled: true
  1509. additional_tests:
  1510. rosebud: *test_rosebud
  1511. - name: tokyotoshokan
  1512. engine: tokyotoshokan
  1513. shortcut: tt
  1514. timeout: 6.0
  1515. disabled: true
  1516. - name: solidtorrents
  1517. engine: solidtorrents
  1518. shortcut: solid
  1519. timeout: 4.0
  1520. base_url:
  1521. - https://solidtorrents.to
  1522. - https://bitsearch.to
  1523. # For this demo of the sqlite engine download:
  1524. # https://liste.mediathekview.de/filmliste-v2.db.bz2
  1525. # and unpack into searx/data/filmliste-v2.db
  1526. # Query to test: "!demo concert"
  1527. #
  1528. # - name: demo
  1529. # engine: sqlite
  1530. # shortcut: demo
  1531. # categories: general
  1532. # result_template: default.html
  1533. # database: searx/data/filmliste-v2.db
  1534. # query_str: >-
  1535. # SELECT title || ' (' || time(duration, 'unixepoch') || ')' AS title,
  1536. # COALESCE( NULLIF(url_video_hd,''), NULLIF(url_video_sd,''), url_video) AS url,
  1537. # description AS content
  1538. # FROM film
  1539. # WHERE title LIKE :wildcard OR description LIKE :wildcard
  1540. # ORDER BY duration DESC
  1541. - name: tagesschau
  1542. engine: tagesschau
  1543. # when set to false, display URLs from Tagesschau, and not the actual source
  1544. # (e.g. NDR, WDR, SWR, HR, ...)
  1545. use_source_url: true
  1546. shortcut: ts
  1547. disabled: true
  1548. - name: tmdb
  1549. engine: xpath
  1550. paging: true
  1551. categories: movies
  1552. search_url: https://www.themoviedb.org/search?page={pageno}&query={query}
  1553. results_xpath: //div[contains(@class,"movie") or contains(@class,"tv")]//div[contains(@class,"card")]
  1554. url_xpath: .//div[contains(@class,"poster")]/a/@href
  1555. thumbnail_xpath: .//img/@src
  1556. title_xpath: .//div[contains(@class,"title")]//h2
  1557. content_xpath: .//div[contains(@class,"overview")]
  1558. shortcut: tm
  1559. disabled: true
  1560. # Requires Tor
  1561. - name: torch
  1562. engine: xpath
  1563. paging: true
  1564. search_url:
  1565. http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/cgi-bin/omega/omega?P={query}&DEFAULTOP=and
  1566. results_xpath: //table//tr
  1567. url_xpath: ./td[2]/a
  1568. title_xpath: ./td[2]/b
  1569. content_xpath: ./td[2]/small
  1570. categories: onions
  1571. enable_http: true
  1572. shortcut: tch
  1573. # torznab engine lets you query any torznab compatible indexer. Using this
  1574. # engine in combination with Jackett opens the possibility to query a lot of
  1575. # public and private indexers directly from SearXNG. More details at:
  1576. # https://docs.searxng.org/dev/engines/online/torznab.html
  1577. #
  1578. # - name: Torznab EZTV
  1579. # engine: torznab
  1580. # shortcut: eztv
  1581. # base_url: http://localhost:9117/api/v2.0/indexers/eztv/results/torznab
  1582. # enable_http: true # if using localhost
  1583. # api_key: xxxxxxxxxxxxxxx
  1584. # show_magnet_links: true
  1585. # show_torrent_files: false
  1586. # # https://github.com/Jackett/Jackett/wiki/Jackett-Categories
  1587. # torznab_categories: # optional
  1588. # - 2000
  1589. # - 5000
  1590. # tmp suspended - too slow, too many errors
  1591. # - name: urbandictionary
  1592. # engine : xpath
  1593. # search_url : https://www.urbandictionary.com/define.php?term={query}
  1594. # url_xpath : //*[@class="word"]/@href
  1595. # title_xpath : //*[@class="def-header"]
  1596. # content_xpath: //*[@class="meaning"]
  1597. # shortcut: ud
  1598. - name: unsplash
  1599. engine: unsplash
  1600. shortcut: us
  1601. - name: yandex
  1602. engine: yandex
  1603. categories: general
  1604. search_type: web
  1605. shortcut: yd
  1606. disabled: true
  1607. inactive: true
  1608. - name: yandex images
  1609. engine: yandex
  1610. categories: images
  1611. search_type: images
  1612. shortcut: ydi
  1613. disabled: true
  1614. inactive: true
  1615. - name: yandex music
  1616. engine: yandex_music
  1617. shortcut: ydm
  1618. disabled: true
  1619. # https://yandex.com/support/music/access.html
  1620. inactive: true
  1621. - name: yahoo
  1622. engine: yahoo
  1623. shortcut: yh
  1624. disabled: true
  1625. - name: yahoo news
  1626. engine: yahoo_news
  1627. shortcut: yhn
  1628. - name: youtube
  1629. shortcut: yt
  1630. # You can use the engine using the official stable API, but you need an API
  1631. # key See: https://console.developers.google.com/project
  1632. #
  1633. # engine: youtube_api
  1634. # api_key: 'apikey' # required!
  1635. #
  1636. # Or you can use the html non-stable engine, activated by default
  1637. engine: youtube_noapi
  1638. - name: dailymotion
  1639. engine: dailymotion
  1640. shortcut: dm
  1641. - name: vimeo
  1642. engine: vimeo
  1643. shortcut: vm
  1644. - name: wiby
  1645. engine: json_engine
  1646. paging: true
  1647. search_url: https://wiby.me/json/?q={query}&p={pageno}
  1648. url_query: URL
  1649. title_query: Title
  1650. content_query: Snippet
  1651. categories: [general, web]
  1652. shortcut: wib
  1653. disabled: true
  1654. about:
  1655. website: https://wiby.me/
  1656. - name: wikibooks
  1657. engine: mediawiki
  1658. weight: 0.5
  1659. shortcut: wb
  1660. categories: [general, wikimedia]
  1661. base_url: "https://{language}.wikibooks.org/"
  1662. search_type: text
  1663. disabled: true
  1664. about:
  1665. website: https://www.wikibooks.org/
  1666. wikidata_id: Q367
  1667. - name: wikinews
  1668. engine: mediawiki
  1669. shortcut: wn
  1670. categories: [news, wikimedia]
  1671. base_url: "https://{language}.wikinews.org/"
  1672. search_type: text
  1673. srsort: create_timestamp_desc
  1674. about:
  1675. website: https://www.wikinews.org/
  1676. wikidata_id: Q964
  1677. - name: wikiquote
  1678. engine: mediawiki
  1679. weight: 0.5
  1680. shortcut: wq
  1681. categories: [general, wikimedia]
  1682. base_url: "https://{language}.wikiquote.org/"
  1683. search_type: text
  1684. disabled: true
  1685. additional_tests:
  1686. rosebud: *test_rosebud
  1687. about:
  1688. website: https://www.wikiquote.org/
  1689. wikidata_id: Q369
  1690. - name: wikisource
  1691. engine: mediawiki
  1692. weight: 0.5
  1693. shortcut: ws
  1694. categories: [general, wikimedia]
  1695. base_url: "https://{language}.wikisource.org/"
  1696. search_type: text
  1697. disabled: true
  1698. about:
  1699. website: https://www.wikisource.org/
  1700. wikidata_id: Q263
  1701. - name: wikispecies
  1702. engine: mediawiki
  1703. shortcut: wsp
  1704. categories: [general, science, wikimedia]
  1705. base_url: "https://species.wikimedia.org/"
  1706. search_type: text
  1707. disabled: true
  1708. about:
  1709. website: https://species.wikimedia.org/
  1710. wikidata_id: Q13679
  1711. tests:
  1712. wikispecies:
  1713. matrix:
  1714. query: "Campbell, L.I. et al. 2011: MicroRNAs"
  1715. lang: en
  1716. result_container:
  1717. - not_empty
  1718. - ['one_title_contains', 'Tardigrada']
  1719. test:
  1720. - unique_results
  1721. - name: wiktionary
  1722. engine: mediawiki
  1723. shortcut: wt
  1724. categories: [dictionaries, wikimedia]
  1725. base_url: "https://{language}.wiktionary.org/"
  1726. search_type: text
  1727. about:
  1728. website: https://www.wiktionary.org/
  1729. wikidata_id: Q151
  1730. - name: wikiversity
  1731. engine: mediawiki
  1732. weight: 0.5
  1733. shortcut: wv
  1734. categories: [general, wikimedia]
  1735. base_url: "https://{language}.wikiversity.org/"
  1736. search_type: text
  1737. disabled: true
  1738. about:
  1739. website: https://www.wikiversity.org/
  1740. wikidata_id: Q370
  1741. - name: wikivoyage
  1742. engine: mediawiki
  1743. weight: 0.5
  1744. shortcut: wy
  1745. categories: [general, wikimedia]
  1746. base_url: "https://{language}.wikivoyage.org/"
  1747. search_type: text
  1748. disabled: true
  1749. about:
  1750. website: https://www.wikivoyage.org/
  1751. wikidata_id: Q373
  1752. - name: wikicommons.images
  1753. engine: wikicommons
  1754. shortcut: wc
  1755. categories: images
  1756. search_type: images
  1757. number_of_results: 10
  1758. - name: wikicommons.videos
  1759. engine: wikicommons
  1760. shortcut: wcv
  1761. categories: videos
  1762. search_type: videos
  1763. number_of_results: 10
  1764. - name: wikicommons.audio
  1765. engine: wikicommons
  1766. shortcut: wca
  1767. categories: music
  1768. search_type: audio
  1769. number_of_results: 10
  1770. - name: wikicommons.files
  1771. engine: wikicommons
  1772. shortcut: wcf
  1773. categories: files
  1774. search_type: files
  1775. number_of_results: 10
  1776. - name: wolframalpha
  1777. shortcut: wa
  1778. # You can use the engine using the official stable API, but you need an API
  1779. # key. See: https://products.wolframalpha.com/api/
  1780. #
  1781. # engine: wolframalpha_api
  1782. # api_key: ''
  1783. #
  1784. # Or you can use the html non-stable engine, activated by default
  1785. engine: wolframalpha_noapi
  1786. timeout: 6.0
  1787. categories: general
  1788. disabled: true
  1789. - name: dictzone
  1790. engine: dictzone
  1791. shortcut: dc
  1792. - name: mymemory translated
  1793. engine: translated
  1794. shortcut: tl
  1795. timeout: 5.0
  1796. # You can use without an API key, but you are limited to 1000 words/day
  1797. # See: https://mymemory.translated.net/doc/usagelimits.php
  1798. # api_key: ''
  1799. # Required dependency: mysql-connector-python
  1800. # - name: mysql
  1801. # engine: mysql_server
  1802. # database: mydatabase
  1803. # username: user
  1804. # password: pass
  1805. # limit: 10
  1806. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1807. # shortcut: mysql
  1808. # Required dependency: mariadb
  1809. # - name: mariadb
  1810. # engine: mariadb_server
  1811. # database: mydatabase
  1812. # username: user
  1813. # password: pass
  1814. # limit: 10
  1815. # query_str: 'SELECT * from mytable WHERE fieldname=%(query)s'
  1816. # shortcut: mdb
  1817. - name: 1337x
  1818. engine: 1337x
  1819. shortcut: 1337x
  1820. disabled: true
  1821. - name: duden
  1822. engine: duden
  1823. shortcut: du
  1824. disabled: true
  1825. - name: seznam
  1826. shortcut: szn
  1827. engine: seznam
  1828. disabled: true
  1829. # - name: deepl
  1830. # engine: deepl
  1831. # shortcut: dpl
  1832. # # You can use the engine using the official stable API, but you need an API key
  1833. # # See: https://www.deepl.com/pro-api?cta=header-pro-api
  1834. # api_key: '' # required!
  1835. # timeout: 5.0
  1836. # disabled: true
  1837. - name: mojeek
  1838. shortcut: mjk
  1839. engine: mojeek
  1840. categories: [general, web]
  1841. disabled: true
  1842. - name: mojeek images
  1843. shortcut: mjkimg
  1844. engine: mojeek
  1845. categories: [images, web]
  1846. search_type: images
  1847. paging: false
  1848. disabled: true
  1849. - name: mojeek news
  1850. shortcut: mjknews
  1851. engine: mojeek
  1852. categories: [news, web]
  1853. search_type: news
  1854. paging: false
  1855. disabled: true
  1856. - name: moviepilot
  1857. engine: moviepilot
  1858. shortcut: mp
  1859. disabled: true
  1860. - name: naver
  1861. shortcut: nvr
  1862. categories: [general, web]
  1863. engine: xpath
  1864. paging: true
  1865. search_url: https://search.naver.com/search.naver?where=webkr&sm=osp_hty&ie=UTF-8&query={query}&start={pageno}
  1866. url_xpath: //a[@class="link_tit"]/@href
  1867. title_xpath: //a[@class="link_tit"]
  1868. content_xpath: //div[@class="total_dsc_wrap"]/a
  1869. first_page_num: 1
  1870. page_size: 10
  1871. disabled: true
  1872. about:
  1873. website: https://www.naver.com/
  1874. wikidata_id: Q485639
  1875. official_api_documentation: https://developers.naver.com/docs/nmt/examples/
  1876. use_official_api: false
  1877. require_api_key: false
  1878. results: HTML
  1879. language: ko
  1880. - name: rubygems
  1881. shortcut: rbg
  1882. engine: xpath
  1883. paging: true
  1884. search_url: https://rubygems.org/search?page={pageno}&query={query}
  1885. results_xpath: /html/body/main/div/a[@class="gems__gem"]
  1886. url_xpath: ./@href
  1887. title_xpath: ./span/h2
  1888. content_xpath: ./span/p
  1889. suggestion_xpath: /html/body/main/div/div[@class="search__suggestions"]/p/a
  1890. first_page_num: 1
  1891. categories: [it, packages]
  1892. disabled: true
  1893. about:
  1894. website: https://rubygems.org/
  1895. wikidata_id: Q1853420
  1896. official_api_documentation: https://guides.rubygems.org/rubygems-org-api/
  1897. use_official_api: false
  1898. require_api_key: false
  1899. results: HTML
  1900. - name: peertube
  1901. engine: peertube
  1902. shortcut: ptb
  1903. paging: true
  1904. # alternatives see: https://instances.joinpeertube.org/instances
  1905. # base_url: https://tube.4aem.com
  1906. categories: videos
  1907. disabled: true
  1908. timeout: 6.0
  1909. - name: mediathekviewweb
  1910. engine: mediathekviewweb
  1911. shortcut: mvw
  1912. disabled: true
  1913. - name: yacy
  1914. # https://docs.searxng.org/dev/engines/online/yacy.html
  1915. engine: yacy
  1916. categories: general
  1917. search_type: text
  1918. base_url:
  1919. - https://yacy.searchlab.eu
  1920. # see https://github.com/searxng/searxng/pull/3631#issuecomment-2240903027
  1921. # - https://search.kyun.li
  1922. # - https://yacy.securecomcorp.eu
  1923. # - https://yacy.myserv.ca
  1924. # - https://yacy.nsupdate.info
  1925. # - https://yacy.electroncash.de
  1926. shortcut: ya
  1927. disabled: true
  1928. # if you aren't using HTTPS for your local yacy instance disable https
  1929. # enable_http: false
  1930. search_mode: 'global'
  1931. # timeout can be reduced in 'local' search mode
  1932. timeout: 5.0
  1933. - name: yacy images
  1934. engine: yacy
  1935. network: yacy
  1936. categories: images
  1937. search_type: image
  1938. shortcut: yai
  1939. disabled: true
  1940. # timeout can be reduced in 'local' search mode
  1941. timeout: 5.0
  1942. - name: rumble
  1943. engine: rumble
  1944. shortcut: ru
  1945. base_url: https://rumble.com/
  1946. paging: true
  1947. categories: videos
  1948. disabled: true
  1949. - name: livespace
  1950. engine: livespace
  1951. shortcut: ls
  1952. categories: videos
  1953. disabled: true
  1954. timeout: 5.0
  1955. - name: wordnik
  1956. engine: wordnik
  1957. shortcut: def
  1958. base_url: https://www.wordnik.com/
  1959. categories: [dictionaries]
  1960. timeout: 5.0
  1961. - name: woxikon.de synonyme
  1962. engine: xpath
  1963. shortcut: woxi
  1964. categories: [dictionaries]
  1965. timeout: 5.0
  1966. disabled: true
  1967. search_url: https://synonyme.woxikon.de/synonyme/{query}.php
  1968. url_xpath: //div[@class="upper-synonyms"]/a/@href
  1969. content_xpath: //div[@class="synonyms-list-group"]
  1970. title_xpath: //div[@class="upper-synonyms"]/a
  1971. no_result_for_http_status: [404]
  1972. about:
  1973. website: https://www.woxikon.de/
  1974. wikidata_id: # No Wikidata ID
  1975. use_official_api: false
  1976. require_api_key: false
  1977. results: HTML
  1978. language: de
  1979. - name: seekr news
  1980. engine: seekr
  1981. shortcut: senews
  1982. categories: news
  1983. seekr_category: news
  1984. disabled: true
  1985. - name: seekr images
  1986. engine: seekr
  1987. network: seekr news
  1988. shortcut: seimg
  1989. categories: images
  1990. seekr_category: images
  1991. disabled: true
  1992. - name: seekr videos
  1993. engine: seekr
  1994. network: seekr news
  1995. shortcut: sevid
  1996. categories: videos
  1997. seekr_category: videos
  1998. disabled: true
  1999. - name: sjp.pwn
  2000. engine: sjp
  2001. shortcut: sjp
  2002. base_url: https://sjp.pwn.pl/
  2003. timeout: 5.0
  2004. disabled: true
  2005. - name: stract
  2006. engine: stract
  2007. shortcut: str
  2008. disabled: true
  2009. - name: svgrepo
  2010. engine: svgrepo
  2011. shortcut: svg
  2012. timeout: 10.0
  2013. disabled: true
  2014. - name: tootfinder
  2015. engine: tootfinder
  2016. shortcut: toot
  2017. - name: voidlinux
  2018. engine: voidlinux
  2019. shortcut: void
  2020. disabled: true
  2021. - name: wallhaven
  2022. engine: wallhaven
  2023. # api_key: abcdefghijklmnopqrstuvwxyz
  2024. shortcut: wh
  2025. # wikimini: online encyclopedia for children
  2026. # The fulltext and title parameter is necessary for Wikimini because
  2027. # sometimes it will not show the results and redirect instead
  2028. - name: wikimini
  2029. engine: xpath
  2030. shortcut: wkmn
  2031. search_url: https://fr.wikimini.org/w/index.php?search={query}&title=Sp%C3%A9cial%3ASearch&fulltext=Search
  2032. url_xpath: //li/div[@class="mw-search-result-heading"]/a/@href
  2033. title_xpath: //li//div[@class="mw-search-result-heading"]/a
  2034. content_xpath: //li/div[@class="searchresult"]
  2035. categories: general
  2036. disabled: true
  2037. about:
  2038. website: https://wikimini.org/
  2039. wikidata_id: Q3568032
  2040. use_official_api: false
  2041. require_api_key: false
  2042. results: HTML
  2043. language: fr
  2044. - name: wttr.in
  2045. engine: wttr
  2046. shortcut: wttr
  2047. timeout: 9.0
  2048. - name: yummly
  2049. engine: yummly
  2050. shortcut: yum
  2051. disabled: true
  2052. - name: brave
  2053. engine: brave
  2054. shortcut: br
  2055. time_range_support: true
  2056. paging: true
  2057. categories: [general, web]
  2058. brave_category: search
  2059. # brave_spellcheck: true
  2060. - name: brave.images
  2061. engine: brave
  2062. network: brave
  2063. shortcut: brimg
  2064. categories: [images, web]
  2065. brave_category: images
  2066. - name: brave.videos
  2067. engine: brave
  2068. network: brave
  2069. shortcut: brvid
  2070. categories: [videos, web]
  2071. brave_category: videos
  2072. - name: brave.news
  2073. engine: brave
  2074. network: brave
  2075. shortcut: brnews
  2076. categories: news
  2077. brave_category: news
  2078. # - name: brave.goggles
  2079. # engine: brave
  2080. # network: brave
  2081. # shortcut: brgog
  2082. # time_range_support: true
  2083. # paging: true
  2084. # categories: [general, web]
  2085. # brave_category: goggles
  2086. # Goggles: # required! This should be a URL ending in .goggle
  2087. - name: lib.rs
  2088. shortcut: lrs
  2089. engine: lib_rs
  2090. disabled: true
  2091. - name: sourcehut
  2092. shortcut: srht
  2093. engine: xpath
  2094. paging: true
  2095. search_url: https://sr.ht/projects?page={pageno}&search={query}
  2096. results_xpath: (//div[@class="event-list"])[1]/div[@class="event"]
  2097. url_xpath: ./h4/a[2]/@href
  2098. title_xpath: ./h4/a[2]
  2099. content_xpath: ./p
  2100. first_page_num: 1
  2101. categories: [it, repos]
  2102. disabled: true
  2103. about:
  2104. website: https://sr.ht
  2105. wikidata_id: Q78514485
  2106. official_api_documentation: https://man.sr.ht/
  2107. use_official_api: false
  2108. require_api_key: false
  2109. results: HTML
  2110. - name: goo
  2111. shortcut: goo
  2112. engine: xpath
  2113. paging: true
  2114. search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
  2115. url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
  2116. title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
  2117. content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
  2118. first_page_num: 0
  2119. categories: [general, web]
  2120. disabled: true
  2121. timeout: 4.0
  2122. about:
  2123. website: https://search.goo.ne.jp
  2124. wikidata_id: Q249044
  2125. use_official_api: false
  2126. require_api_key: false
  2127. results: HTML
  2128. language: ja
  2129. - name: bt4g
  2130. engine: bt4g
  2131. shortcut: bt4g
  2132. - name: pkg.go.dev
  2133. engine: pkg_go_dev
  2134. shortcut: pgo
  2135. disabled: true
  2136. # Doku engine lets you access to any Doku wiki instance:
  2137. # A public one or a privete/corporate one.
  2138. # - name: ubuntuwiki
  2139. # engine: doku
  2140. # shortcut: uw
  2141. # base_url: 'https://doc.ubuntu-fr.org'
  2142. # Be careful when enabling this engine if you are
  2143. # running a public instance. Do not expose any sensitive
  2144. # information. You can restrict access by configuring a list
  2145. # of access tokens under tokens.
  2146. # - name: git grep
  2147. # engine: command
  2148. # command: ['git', 'grep', '{{QUERY}}']
  2149. # shortcut: gg
  2150. # tokens: []
  2151. # disabled: true
  2152. # delimiter:
  2153. # chars: ':'
  2154. # keys: ['filepath', 'code']
  2155. # Be careful when enabling this engine if you are
  2156. # running a public instance. Do not expose any sensitive
  2157. # information. You can restrict access by configuring a list
  2158. # of access tokens under tokens.
  2159. # - name: locate
  2160. # engine: command
  2161. # command: ['locate', '{{QUERY}}']
  2162. # shortcut: loc
  2163. # tokens: []
  2164. # disabled: true
  2165. # delimiter:
  2166. # chars: ' '
  2167. # keys: ['line']
  2168. # Be careful when enabling this engine if you are
  2169. # running a public instance. Do not expose any sensitive
  2170. # information. You can restrict access by configuring a list
  2171. # of access tokens under tokens.
  2172. # - name: find
  2173. # engine: command
  2174. # command: ['find', '.', '-name', '{{QUERY}}']
  2175. # query_type: path
  2176. # shortcut: fnd
  2177. # tokens: []
  2178. # disabled: true
  2179. # delimiter:
  2180. # chars: ' '
  2181. # keys: ['line']
  2182. # Be careful when enabling this engine if you are
  2183. # running a public instance. Do not expose any sensitive
  2184. # information. You can restrict access by configuring a list
  2185. # of access tokens under tokens.
  2186. # - name: pattern search in files
  2187. # engine: command
  2188. # command: ['fgrep', '{{QUERY}}']
  2189. # shortcut: fgr
  2190. # tokens: []
  2191. # disabled: true
  2192. # delimiter:
  2193. # chars: ' '
  2194. # keys: ['line']
  2195. # Be careful when enabling this engine if you are
  2196. # running a public instance. Do not expose any sensitive
  2197. # information. You can restrict access by configuring a list
  2198. # of access tokens under tokens.
  2199. # - name: regex search in files
  2200. # engine: command
  2201. # command: ['grep', '{{QUERY}}']
  2202. # shortcut: gr
  2203. # tokens: []
  2204. # disabled: true
  2205. # delimiter:
  2206. # chars: ' '
  2207. # keys: ['line']
  2208. doi_resolvers:
  2209. oadoi.org: 'https://oadoi.org/'
  2210. doi.org: 'https://doi.org/'
  2211. doai.io: 'https://dissem.in/'
  2212. sci-hub.se: 'https://sci-hub.se/'
  2213. sci-hub.st: 'https://sci-hub.st/'
  2214. sci-hub.ru: 'https://sci-hub.ru/'
  2215. default_doi_resolver: 'oadoi.org'