settings.yml 63 KB

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