settings.yml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  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. server:
  8. port : 8888
  9. bind_address : "127.0.0.1" # address to listen on
  10. secret_key : "ultrasecretkey" # change this!
  11. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  12. image_proxy : False # Proxying image results through searx
  13. ui:
  14. themes_path : "" # Custom ui themes path - leave it blank if you didn't change
  15. default_theme : oscar # ui theme
  16. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  17. outgoing: # communication with search engines
  18. request_timeout : 2.0 # seconds
  19. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  20. # uncomment below section if you want to use a proxy
  21. # see http://docs.python-requests.org/en/latest/user/advanced/#proxies
  22. # SOCKS proxies are not supported : see https://github.com/kennethreitz/requests/pull/478
  23. # proxies :
  24. # http : http://127.0.0.1:8080
  25. # https: http://127.0.0.1:8080
  26. # uncomment below section only if you have more than one network interface
  27. # which can be the source of outgoing search requests
  28. # source_ips:
  29. # - 1.1.1.1
  30. # - 1.1.1.2
  31. engines:
  32. - name : arch linux wiki
  33. engine : archlinux
  34. shortcut : al
  35. - name : wikipedia
  36. engine : mediawiki
  37. shortcut : wp
  38. base_url : 'https://{language}.wikipedia.org/'
  39. number_of_results : 1
  40. - name : bing
  41. engine : bing
  42. shortcut : bi
  43. - name : bing images
  44. engine : bing_images
  45. shortcut : bii
  46. - name : bing news
  47. engine : bing_news
  48. shortcut : bin
  49. - name : btdigg
  50. engine : btdigg
  51. shortcut : bt
  52. - name : currency
  53. engine : currency_convert
  54. categories : general
  55. shortcut : cc
  56. - name : deezer
  57. engine : deezer
  58. shortcut : dz
  59. - name : deviantart
  60. engine : deviantart
  61. shortcut : da
  62. timeout: 3.0
  63. - name : ddg definitions
  64. engine : duckduckgo_definitions
  65. shortcut : ddd
  66. - name : digg
  67. engine : digg
  68. shortcut : dg
  69. - name : wikidata
  70. engine : wikidata
  71. shortcut : wd
  72. - name : duckduckgo
  73. engine : duckduckgo
  74. shortcut : ddg
  75. # api-key required: http://www.faroo.com/hp/api/api.html#key
  76. # - name : faroo
  77. # engine : faroo
  78. # shortcut : fa
  79. # api_key : 'apikey' # required!
  80. - name : 500px
  81. engine : www500px
  82. shortcut : px
  83. - name : 1x
  84. engine : www1x
  85. shortcut : 1x
  86. disabled : True
  87. - name : flickr
  88. categories : images
  89. shortcut : fl
  90. # You can use the engine using the official stable API, but you need an API key
  91. # See : https://www.flickr.com/services/apps/create/
  92. # engine : flickr
  93. # api_key: 'apikey' # required!
  94. # Or you can use the html non-stable engine, activated by default
  95. engine : flickr_noapi
  96. - name : frinkiac
  97. engine : frinkiac
  98. shortcut : frk
  99. disabled : True
  100. - name : gigablast
  101. engine : gigablast
  102. shortcut : gb
  103. disabled: True
  104. - name : github
  105. engine : github
  106. shortcut : gh
  107. - name : google
  108. engine : google
  109. shortcut : go
  110. - name : google images
  111. engine : google_images
  112. shortcut : goi
  113. - name : google news
  114. engine : google_news
  115. shortcut : gon
  116. - name : google play apps
  117. engine : xpath
  118. search_url : https://play.google.com/store/search?q={query}&c=apps
  119. url_xpath : //a[@class="title"]/@href
  120. title_xpath : //a[@class="title"]
  121. content_xpath : //a[@class="subtitle"]
  122. categories : files
  123. shortcut : gpa
  124. disabled : True
  125. - name : google play movies
  126. engine : xpath
  127. search_url : https://play.google.com/store/search?q={query}&c=movies
  128. url_xpath : //a[@class="title"]/@href
  129. title_xpath : //a[@class="title"]
  130. content_xpath : //a[@class="subtitle"]
  131. categories : videos
  132. shortcut : gpm
  133. disabled : True
  134. - name : google play music
  135. engine : xpath
  136. search_url : https://play.google.com/store/search?q={query}&c=music
  137. url_xpath : //a[@class="title"]/@href
  138. title_xpath : //a[@class="title"]
  139. content_xpath : //a[@class="subtitle"]
  140. categories : music
  141. shortcut : gps
  142. disabled : True
  143. - name : mixcloud
  144. engine : mixcloud
  145. shortcut : mc
  146. - name : nyaa
  147. engine : nyaa
  148. shortcut : nt
  149. - name : openstreetmap
  150. engine : openstreetmap
  151. shortcut : osm
  152. - name : photon
  153. engine : photon
  154. shortcut : ph
  155. - name : piratebay
  156. engine : piratebay
  157. shortcut : tpb
  158. disabled : True
  159. - name : qwant
  160. engine : qwant
  161. shortcut : qw
  162. categories : general
  163. disabled : True
  164. - name : qwant images
  165. engine : qwant
  166. shortcut : qwi
  167. categories : images
  168. - name : qwant news
  169. engine : qwant
  170. shortcut : qwn
  171. categories : news
  172. - name : qwant social
  173. engine : qwant
  174. shortcut : qws
  175. categories : social media
  176. - name : reddit
  177. engine : reddit
  178. shortcut : re
  179. page_size : 25
  180. timeout : 10.0
  181. disabled : True
  182. - name : kickass
  183. engine : kickass
  184. shortcut : ka
  185. - name : soundcloud
  186. engine : soundcloud
  187. shortcut : sc
  188. - name : stackoverflow
  189. engine : stackoverflow
  190. shortcut : st
  191. - name : searchcode doc
  192. engine : searchcode_doc
  193. shortcut : scd
  194. - name : searchcode code
  195. engine : searchcode_code
  196. shortcut : scc
  197. disabled : True
  198. - name : spotify
  199. engine : spotify
  200. shortcut : stf
  201. - name : subtitleseeker
  202. engine : subtitleseeker
  203. shortcut : ss
  204. # The language is an option. You can put any language written in english
  205. # Examples : English, French, German, Hungarian, Chinese...
  206. # language : English
  207. - name : startpage
  208. engine : startpage
  209. shortcut : sp
  210. timeout : 6.0
  211. disabled : True
  212. - name : ixquick
  213. engine : startpage
  214. base_url : 'https://www.ixquick.com/'
  215. search_url : 'https://www.ixquick.com/do/search'
  216. shortcut : iq
  217. timeout : 6.0
  218. disabled : True
  219. - name : swisscows
  220. engine : swisscows
  221. shortcut : sw
  222. disabled : True
  223. - name : tokyotoshokan
  224. engine : tokyotoshokan
  225. shortcut : tt
  226. timeout : 6.0
  227. disabled : True
  228. - name : torrentz
  229. engine : torrentz
  230. timeout : 5.0
  231. shortcut : to
  232. - name : twitter
  233. engine : twitter
  234. shortcut : tw
  235. # maybe in a fun category
  236. # - name : uncyclopedia
  237. # engine : mediawiki
  238. # shortcut : unc
  239. # base_url : https://uncyclopedia.wikia.com/
  240. # number_of_results : 5
  241. # tmp suspended - too slow, too many errors
  242. # - name : urbandictionary
  243. # engine : xpath
  244. # search_url : http://www.urbandictionary.com/define.php?term={query}
  245. # url_xpath : //div[@class="word"]//a/@href
  246. # title_xpath : //div[@class="word"]//a
  247. # content_xpath : //div[@class="definition"]
  248. # shortcut : ud
  249. - name : yahoo
  250. engine : yahoo
  251. shortcut : yh
  252. - name : yandex
  253. engine : yandex
  254. shortcut : yn
  255. disabled : True
  256. - name : yahoo news
  257. engine : yahoo_news
  258. shortcut : yhn
  259. - name : youtube
  260. shortcut : yt
  261. # You can use the engine using the official stable API, but you need an API key
  262. # See : https://console.developers.google.com/project
  263. # engine : youtube_api
  264. # api_key: 'apikey' # required!
  265. # Or you can use the html non-stable engine, activated by default
  266. engine : youtube_noapi
  267. - name : dailymotion
  268. engine : dailymotion
  269. shortcut : dm
  270. - name : vimeo
  271. engine : vimeo
  272. shortcut : vm
  273. - name : wolframalpha
  274. shortcut : wa
  275. # You can use the engine using the official stable API, but you need an API key
  276. # See : http://products.wolframalpha.com/api/
  277. # engine : wolframalpha_api
  278. # api_key: '' # required!
  279. engine : wolframalpha_noapi
  280. timeout: 6.0
  281. categories : science
  282. #The blekko technology and team have joined IBM Watson! -> https://blekko.com/
  283. # - name : blekko images
  284. # engine : blekko_images
  285. # locale : en-US
  286. # shortcut : bli
  287. # - name : yacy
  288. # engine : yacy
  289. # shortcut : ya
  290. # base_url : 'http://localhost:8090'
  291. # number_of_results : 5
  292. # timeout : 3.0
  293. locales:
  294. en : English
  295. bg : Български (Bulgarian)
  296. de : Deutsch (German)
  297. el_GR : Ελληνικά (Greek_Greece)
  298. eo : Esperanto (Esperanto)
  299. es : Español (Spanish)
  300. fr : Français (French)
  301. he : עברית (Hebrew)
  302. hu : Magyar (Hungarian)
  303. it : Italiano (Italian)
  304. ja : 日本語 (Japanese)
  305. nl : Nederlands (Dutch)
  306. pt : Português (Portuguese)
  307. pt_BR : Português (Portuguese_Brazil)
  308. ro : Română (Romanian)
  309. ru : Русский (Russian)
  310. tr : Türkçe (Turkish)
  311. zh : 中文 (Chinese)