settings.yml 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  1. general:
  2. debug : False # Debug mode, only for development
  3. instance_name : "searx" # displayed name
  4. search:
  5. safe_search : 0 # Filter results. 0: None, 1: Moderate, 2: Strict
  6. autocomplete : "" # Existing autocomplete backends: "dbpedia", "duckduckgo", "google", "startpage", "wikipedia" - leave blank to turn it off by default
  7. language : "all"
  8. server:
  9. port : 8888
  10. bind_address : "127.0.0.1" # address to listen on
  11. secret_key : "ultrasecretkey" # change this!
  12. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  13. image_proxy : False # Proxying image results through searx
  14. http_protocol_version : "1.0" # 1.0 and 1.1 are supported
  15. ui:
  16. static_path : "" # Custom static path - leave it blank if you didn't change
  17. templates_path : "" # Custom templates path - leave it blank if you didn't change
  18. default_theme : oscar # ui theme
  19. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  20. # searx supports result proxification using an external service: https://github.com/asciimoo/morty
  21. # uncomment below section if you have running morty proxy
  22. #result_proxy:
  23. # url : http://127.0.0.1:3000/
  24. # key : your_morty_proxy_key
  25. outgoing: # communication with search engines
  26. request_timeout : 2.0 # seconds
  27. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  28. pool_connections : 100 # Number of different hosts
  29. pool_maxsize : 10 # Number of simultaneous requests by host
  30. # uncomment below section if you want to use a proxy
  31. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  32. # SOCKS proxies are also supported: see http://docs.python-requests.org/en/master/user/advanced/#socks
  33. # proxies :
  34. # http : http://127.0.0.1:8080
  35. # https: http://127.0.0.1:8080
  36. # uncomment below section only if you have more than one network interface
  37. # which can be the source of outgoing search requests
  38. # source_ips:
  39. # - 1.1.1.1
  40. # - 1.1.1.2
  41. engines:
  42. - name : arch linux wiki
  43. engine : archlinux
  44. shortcut : al
  45. - name : archive is
  46. engine : xpath
  47. search_url : https://archive.is/{query}
  48. url_xpath : (//div[@class="TEXT-BLOCK"]/a)/@href
  49. title_xpath : (//div[@class="TEXT-BLOCK"]/a)
  50. content_xpath : //div[@class="TEXT-BLOCK"]/ul/li
  51. categories : general
  52. timeout : 7.0
  53. disabled : True
  54. shortcut : ai
  55. - name : base
  56. engine : base
  57. shortcut : bs
  58. - name : wikipedia
  59. engine : wikipedia
  60. shortcut : wp
  61. base_url : 'https://{language}.wikipedia.org/'
  62. - name : bing
  63. engine : bing
  64. shortcut : bi
  65. - name : bing images
  66. engine : bing_images
  67. shortcut : bii
  68. - name : bing news
  69. engine : bing_news
  70. shortcut : bin
  71. - name : bing videos
  72. engine : bing_videos
  73. shortcut : biv
  74. - name : bitbucket
  75. engine : xpath
  76. paging : True
  77. search_url : https://bitbucket.org/repo/all/{pageno}?name={query}
  78. url_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]/@href
  79. title_xpath : //article[@class="repo-summary"]//a[@class="repo-link"]
  80. content_xpath : //article[@class="repo-summary"]/p
  81. categories : it
  82. timeout : 4.0
  83. disabled : True
  84. shortcut : bb
  85. - name : ccc-tv
  86. engine : xpath
  87. paging : False
  88. search_url : https://media.ccc.de/search/?q={query}
  89. url_xpath : //div[@class="caption"]/h3/a/@href
  90. title_xpath : //div[@class="caption"]/h3/a/text()
  91. content_xpath : //div[@class="caption"]/h4/@title
  92. categories : videos
  93. disabled : True
  94. shortcut : c3tv
  95. - name : crossref
  96. engine : json_engine
  97. paging : True
  98. search_url : http://search.crossref.org/dois?q={query}&page={pageno}
  99. url_query : doi
  100. title_query : title
  101. content_query : fullCitation
  102. categories : science
  103. shortcut : cr
  104. - name : currency
  105. engine : currency_convert
  106. categories : general
  107. shortcut : cc
  108. - name : deezer
  109. engine : deezer
  110. shortcut : dz
  111. - name : deviantart
  112. engine : deviantart
  113. shortcut : da
  114. timeout: 3.0
  115. - name : ddg definitions
  116. engine : duckduckgo_definitions
  117. shortcut : ddd
  118. weight : 2
  119. disabled : True
  120. - name : digbt
  121. engine : digbt
  122. shortcut : dbt
  123. timeout : 6.0
  124. disabled : True
  125. - name : digg
  126. engine : digg
  127. shortcut : dg
  128. - name : erowid
  129. engine : xpath
  130. paging : True
  131. first_page_num : 0
  132. page_size : 30
  133. search_url : https://www.erowid.org/search.php?q={query}&s={pageno}
  134. url_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/@href
  135. title_xpath : //dl[@class="results-list"]/dt[@class="result-title"]/a/text()
  136. content_xpath : //dl[@class="results-list"]/dd[@class="result-details"]
  137. categories : general
  138. shortcut : ew
  139. disabled : True
  140. - name : wikidata
  141. engine : wikidata
  142. shortcut : wd
  143. weight : 2
  144. - name : duckduckgo
  145. engine : duckduckgo
  146. shortcut : ddg
  147. disabled : True
  148. - name : duckduckgo images
  149. engine : duckduckgo_images
  150. shortcut : ddi
  151. timeout: 3.0
  152. disabled : True
  153. - name : etymonline
  154. engine : xpath
  155. paging : True
  156. search_url : http://etymonline.com/?search={query}&p={pageno}
  157. url_xpath : //dt/a[1]/@href
  158. title_xpath : //dt
  159. content_xpath : //dd
  160. suggestion_xpath : //a[@class="crossreference"]
  161. first_page_num : 0
  162. shortcut : et
  163. disabled : True
  164. # api-key required: http://www.faroo.com/hp/api/api.html#key
  165. # - name : faroo
  166. # engine : faroo
  167. # shortcut : fa
  168. # api_key : 'apikey' # required!
  169. - name : 500px
  170. engine : www500px
  171. shortcut : px
  172. - name : 1x
  173. engine : www1x
  174. shortcut : 1x
  175. disabled : True
  176. - name : fdroid
  177. engine : fdroid
  178. shortcut : fd
  179. disabled : True
  180. - name : flickr
  181. categories : images
  182. shortcut : fl
  183. # You can use the engine using the official stable API, but you need an API key
  184. # See : https://www.flickr.com/services/apps/create/
  185. # engine : flickr
  186. # api_key: 'apikey' # required!
  187. # Or you can use the html non-stable engine, activated by default
  188. engine : flickr_noapi
  189. - name : free software directory
  190. engine : mediawiki
  191. shortcut : fsd
  192. categories : it
  193. base_url : https://directory.fsf.org/
  194. number_of_results : 5
  195. # what part of a page matches the query string: title, text, nearmatch
  196. # title - query matches title, text - query matches the text of page, nearmatch - nearmatch in title
  197. search_type : title
  198. timeout : 5.0
  199. disabled : True
  200. - name : frinkiac
  201. engine : frinkiac
  202. shortcut : frk
  203. disabled : True
  204. - name : genius
  205. engine : genius
  206. shortcut : gen
  207. - name : gigablast
  208. engine : gigablast
  209. shortcut : gb
  210. timeout : 3.0
  211. disabled: True
  212. - name : gitlab
  213. engine : xpath
  214. paging : True
  215. search_url : https://gitlab.com/search?page={pageno}&search={query}
  216. url_xpath : //li[@class="project-row"]//a[@class="project"]/@href
  217. title_xpath : //li[@class="project-row"]//span[contains(@class, "project-full-name")]
  218. content_xpath : //li[@class="project-row"]//div[@class="description"]/p
  219. categories : it
  220. shortcut : gl
  221. timeout : 5.0
  222. disabled : True
  223. - name : github
  224. engine : github
  225. shortcut : gh
  226. - name : google
  227. engine : google
  228. shortcut : go
  229. - name : google images
  230. engine : google_images
  231. shortcut : goi
  232. - name : google news
  233. engine : google_news
  234. shortcut : gon
  235. - name : google videos
  236. engine : google_videos
  237. shortcut : gov
  238. - name : google scholar
  239. engine : xpath
  240. paging : True
  241. search_url : https://scholar.google.com/scholar?start={pageno}&q={query}&hl=en&as_sdt=0,5&as_vis=1
  242. results_xpath : //div[@class="gs_r"]/div[@class="gs_ri"]
  243. url_xpath : .//h3/a/@href
  244. title_xpath : .//h3/a
  245. content_xpath : .//div[@class="gs_rs"]
  246. suggestion_xpath : //div[@id="gs_qsuggest"]/ul/li
  247. page_size : 10
  248. first_page_num : 0
  249. categories : science
  250. shortcut : gos
  251. - name : google play apps
  252. engine : xpath
  253. search_url : https://play.google.com/store/search?q={query}&c=apps
  254. url_xpath : //a[@class="title"]/@href
  255. title_xpath : //a[@class="title"]
  256. content_xpath : //a[@class="subtitle"]
  257. categories : files
  258. shortcut : gpa
  259. disabled : True
  260. - name : google play movies
  261. engine : xpath
  262. search_url : https://play.google.com/store/search?q={query}&c=movies
  263. url_xpath : //a[@class="title"]/@href
  264. title_xpath : //a[@class="title"]/@title
  265. content_xpath : //a[contains(@class, "subtitle")]
  266. categories : videos
  267. shortcut : gpm
  268. disabled : True
  269. - name : google play music
  270. engine : xpath
  271. search_url : https://play.google.com/store/search?q={query}&c=music
  272. url_xpath : //a[@class="title"]/@href
  273. title_xpath : //a[@class="title"]
  274. content_xpath : //a[@class="subtitle"]
  275. categories : music
  276. shortcut : gps
  277. disabled : True
  278. - name : geektimes
  279. engine : xpath
  280. paging : True
  281. search_url : https://geektimes.ru/search/page{pageno}/?q={query}
  282. url_xpath : //div[@class="search_results"]//a[@class="post__title_link"]/@href
  283. title_xpath : //div[@class="search_results"]//a[@class="post__title_link"]
  284. content_xpath : //div[@class="search_results"]//div[contains(@class, "content")]
  285. categories : it
  286. timeout : 4.0
  287. disabled : True
  288. shortcut : gt
  289. - name : habrahabr
  290. engine : xpath
  291. paging : True
  292. search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
  293. url_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")]/@href
  294. title_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")]
  295. content_xpath : //div[@class="search_results"]//div[contains(@class, "content")]
  296. categories : it
  297. timeout : 4.0
  298. disabled : True
  299. shortcut : habr
  300. - name : hoogle
  301. engine : json_engine
  302. paging : True
  303. search_url : https://www.haskell.org/hoogle/?mode=json&hoogle={query}&start={pageno}
  304. results_query : results
  305. url_query : location
  306. title_query : self
  307. content_query : docs
  308. page_size : 20
  309. categories : it
  310. shortcut : ho
  311. - name : ina
  312. engine : ina
  313. shortcut : in
  314. timeout : 6.0
  315. disabled : True
  316. - name: kickass
  317. engine : kickass
  318. shortcut : kc
  319. timeout : 4.0
  320. disabled : True
  321. - name : library genesis
  322. engine : xpath
  323. search_url : http://libgen.io/search.php?req={query}
  324. url_xpath : //a[contains(@href,"bookfi.net")]/@href
  325. title_xpath : //a[contains(@href,"book/")]/text()[1]
  326. content_xpath : //td/a[1][contains(@href,"=author")]/text()
  327. categories : general
  328. timeout : 7.0
  329. disabled : True
  330. shortcut : lg
  331. - name : lobste.rs
  332. engine : xpath
  333. search_url : https://lobste.rs/search?utf8=%E2%9C%93&q={query}&what=stories&order=relevance
  334. results_xpath : //li[contains(@class, "story")]
  335. url_xpath : .//span[@class="link"]/a/@href
  336. title_xpath : .//span[@class="link"]/a
  337. content_xpath : .//a[@class="domain"]
  338. categories : it
  339. shortcut : lo
  340. - name : microsoft academic
  341. engine : json_engine
  342. paging : True
  343. search_url : https://academic.microsoft.com/api/search/GetEntityResults?query=%40{query}%40&filters=&offset={pageno}&limit=8&correlationId=undefined
  344. results_query : results
  345. url_query : u
  346. title_query : dn
  347. content_query : d
  348. page_size : 8
  349. first_page_num : 0
  350. categories : science
  351. shortcut : ma
  352. - name : mixcloud
  353. engine : mixcloud
  354. shortcut : mc
  355. - name : nyaa
  356. engine : nyaa
  357. shortcut : nt
  358. disabled : True
  359. - name : openstreetmap
  360. engine : openstreetmap
  361. shortcut : osm
  362. - name : openrepos
  363. engine : xpath
  364. paging : True
  365. search_url : https://openrepos.net/search/node/{query}?page={pageno}
  366. url_xpath : //li[@class="search-result"]//h3[@class="title"]/a/@href
  367. title_xpath : //li[@class="search-result"]//h3[@class="title"]/a
  368. content_xpath : //li[@class="search-result"]//div[@class="search-snippet-info"]//p[@class="search-snippet"]
  369. categories : files
  370. timeout : 4.0
  371. disabled : True
  372. shortcut : or
  373. - name : pdbe
  374. engine : pdbe
  375. shortcut : pdb
  376. # Hide obsolete PDB entries.
  377. # Default is not to hide obsolete structures
  378. # hide_obsolete : False
  379. - name : photon
  380. engine : photon
  381. shortcut : ph
  382. - name : piratebay
  383. engine : piratebay
  384. shortcut : tpb
  385. url: https://pirateproxy.red/
  386. timeout : 3.0
  387. - name : qwant
  388. engine : qwant
  389. shortcut : qw
  390. categories : general
  391. disabled : True
  392. - name : qwant images
  393. engine : qwant
  394. shortcut : qwi
  395. categories : images
  396. - name : qwant news
  397. engine : qwant
  398. shortcut : qwn
  399. categories : news
  400. - name : qwant social
  401. engine : qwant
  402. shortcut : qws
  403. categories : social media
  404. - name : reddit
  405. engine : reddit
  406. shortcut : re
  407. page_size : 25
  408. timeout : 10.0
  409. disabled : True
  410. - name : scanr structures
  411. shortcut: scs
  412. engine : scanr_structures
  413. disabled : True
  414. - name : soundcloud
  415. engine : soundcloud
  416. shortcut : sc
  417. - name : stackoverflow
  418. engine : stackoverflow
  419. shortcut : st
  420. - name : searchcode doc
  421. engine : searchcode_doc
  422. shortcut : scd
  423. - name : searchcode code
  424. engine : searchcode_code
  425. shortcut : scc
  426. disabled : True
  427. - name : framalibre
  428. engine : framalibre
  429. shortcut : frl
  430. disabled : True
  431. # - name : searx
  432. # engine : searx_engine
  433. # shortcut : se
  434. # instance_urls :
  435. # - http://127.0.0.1:8888/
  436. # - ...
  437. # disabled : True
  438. - name : semantic scholar
  439. engine : xpath
  440. paging : True
  441. search_url : https://www.semanticscholar.org/search?q={query}&sort=relevance&page={pageno}&ae=false
  442. results_xpath : //article
  443. url_xpath : .//div[@class="search-result-title"]/a/@href
  444. title_xpath : .//div[@class="search-result-title"]/a
  445. content_xpath : .//div[@class="search-result-abstract"]
  446. shortcut : se
  447. categories : science
  448. - name : spotify
  449. engine : spotify
  450. shortcut : stf
  451. - name : subtitleseeker
  452. engine : subtitleseeker
  453. shortcut : ss
  454. # The language is an option. You can put any language written in english
  455. # Examples : English, French, German, Hungarian, Chinese...
  456. # language : English
  457. - name : startpage
  458. engine : startpage
  459. shortcut : sp
  460. timeout : 6.0
  461. disabled : True
  462. - name : ixquick
  463. engine : startpage
  464. base_url : 'https://www.ixquick.eu/'
  465. search_url : 'https://www.ixquick.eu/do/search'
  466. shortcut : iq
  467. timeout : 6.0
  468. disabled : True
  469. - name : swisscows
  470. engine : swisscows
  471. shortcut : sw
  472. disabled : True
  473. - name : tokyotoshokan
  474. engine : tokyotoshokan
  475. shortcut : tt
  476. timeout : 6.0
  477. disabled : True
  478. - name : twitter
  479. engine : twitter
  480. shortcut : tw
  481. # maybe in a fun category
  482. # - name : uncyclopedia
  483. # engine : mediawiki
  484. # shortcut : unc
  485. # base_url : https://uncyclopedia.wikia.com/
  486. # number_of_results : 5
  487. # tmp suspended - too slow, too many errors
  488. # - name : urbandictionary
  489. # engine : xpath
  490. # search_url : http://www.urbandictionary.com/define.php?term={query}
  491. # url_xpath : //*[@class="word"]/@href
  492. # title_xpath : //*[@class="def-header"]
  493. # content_xpath : //*[@class="meaning"]
  494. # shortcut : ud
  495. - name : yahoo
  496. engine : yahoo
  497. shortcut : yh
  498. - name : yandex
  499. engine : yandex
  500. shortcut : yn
  501. disabled : True
  502. - name : yahoo news
  503. engine : yahoo_news
  504. shortcut : yhn
  505. - name : youtube
  506. shortcut : yt
  507. # You can use the engine using the official stable API, but you need an API key
  508. # See : https://console.developers.google.com/project
  509. # engine : youtube_api
  510. # api_key: 'apikey' # required!
  511. # Or you can use the html non-stable engine, activated by default
  512. engine : youtube_noapi
  513. - name : dailymotion
  514. engine : dailymotion
  515. shortcut : dm
  516. - name : vimeo
  517. engine : vimeo
  518. shortcut : vm
  519. - name : wolframalpha
  520. shortcut : wa
  521. # You can use the engine using the official stable API, but you need an API key
  522. # See : http://products.wolframalpha.com/api/
  523. # engine : wolframalpha_api
  524. # api_key: '' # required!
  525. engine : wolframalpha_noapi
  526. timeout: 6.0
  527. categories : science
  528. - name : seedpeer
  529. engine : seedpeer
  530. shortcut: speu
  531. categories: files, music, videos
  532. disabled: True
  533. - name : dictzone
  534. engine : dictzone
  535. shortcut : dc
  536. - name : mymemory translated
  537. engine : translated
  538. shortcut : tl
  539. timeout : 5.0
  540. disabled : True
  541. # You can use without an API key, but you are limited to 1000 words/day
  542. # See : http://mymemory.translated.net/doc/usagelimits.php
  543. # api_key : ''
  544. - name : voat
  545. engine: xpath
  546. shortcut: vo
  547. categories: social media
  548. search_url : https://voat.co/search?q={query}
  549. url_xpath : //p[contains(@class, "title")]/a/@href
  550. title_xpath : //p[contains(@class, "title")]/a
  551. content_xpath : //span[@class="domain"]
  552. timeout : 10.0
  553. disabled : True
  554. - name : 1337x
  555. engine : 1337x
  556. shortcut : 1337x
  557. disabled : True
  558. #The blekko technology and team have joined IBM Watson! -> https://blekko.com/
  559. # - name : blekko images
  560. # engine : blekko_images
  561. # locale : en-US
  562. # shortcut : bli
  563. # - name : yacy
  564. # engine : yacy
  565. # shortcut : ya
  566. # base_url : 'http://localhost:8090'
  567. # number_of_results : 5
  568. # timeout : 3.0
  569. # Doku engine lets you access to any Doku wiki instance:
  570. # A public one or a privete/corporate one.
  571. # - name : ubuntuwiki
  572. # engine : doku
  573. # shortcut : uw
  574. # base_url : 'http://doc.ubuntu-fr.org'
  575. locales:
  576. en : English
  577. bg : Български (Bulgarian)
  578. cs : Čeština (Czech)
  579. de : Deutsch (German)
  580. de_DE : Deutsch (German_Germany)
  581. el_GR : Ελληνικά (Greek_Greece)
  582. eo : Esperanto (Esperanto)
  583. es : Español (Spanish)
  584. fi : Suomi (Finnish)
  585. fr : Français (French)
  586. he : עברית (Hebrew)
  587. hu : Magyar (Hungarian)
  588. it : Italiano (Italian)
  589. ja : 日本語 (Japanese)
  590. nl : Nederlands (Dutch)
  591. pt : Português (Portuguese)
  592. pt_BR : Português (Portuguese_Brazil)
  593. ro : Română (Romanian)
  594. ru : Русский (Russian)
  595. sk : Slovenčina (Slovak)
  596. sv : Svenska (Swedish)
  597. tr : Türkçe (Turkish)
  598. uk : українська мова (Ukrainian)
  599. zh : 中文 (Chinese)