settings.yml 8.1 KB

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