settings.yml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. server:
  2. port : 8888
  3. secret_key : "ultrasecretkey" # change this!
  4. debug : False # Debug mode, only for development
  5. request_timeout : 2.0 # seconds
  6. base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
  7. themes_path : "" # Custom ui themes path - leave it blank if you didn't change
  8. default_theme : oscar # ui theme
  9. useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
  10. image_proxy : False # Proxying image results through searx
  11. default_locale : "" # Default interface locale - leave blank to detect from browser information or use codes from the 'locales' config section
  12. # uncomment below section only if you have more than one network interface
  13. # which can be the source of outgoing search requests
  14. #source_ips:
  15. # - 1.1.1.1
  16. # - 1.1.1.2
  17. engines:
  18. - name : wikipedia
  19. engine : mediawiki
  20. shortcut : wp
  21. base_url : 'https://{language}.wikipedia.org/'
  22. number_of_results : 1
  23. - name : bing
  24. engine : bing
  25. locale : en-US
  26. shortcut : bi
  27. - name : bing images
  28. engine : bing_images
  29. locale : en-US
  30. shortcut : bii
  31. - name : bing news
  32. engine : bing_news
  33. locale : en-US
  34. shortcut : bin
  35. - name : btdigg
  36. engine : btdigg
  37. shortcut : bt
  38. - name : currency
  39. engine : currency_convert
  40. categories : general
  41. shortcut : cc
  42. - name : deezer
  43. engine : deezer
  44. shortcut : dz
  45. - name : deviantart
  46. engine : deviantart
  47. shortcut : da
  48. timeout: 3.0
  49. - name : ddg definitions
  50. engine : duckduckgo_definitions
  51. shortcut : ddd
  52. - name : digg
  53. engine : digg
  54. shortcut : dg
  55. - name : wikidata
  56. engine : wikidata
  57. shortcut : wd
  58. - name : duckduckgo
  59. engine : duckduckgo
  60. shortcut : ddg
  61. # api-key required: http://www.faroo.com/hp/api/api.html#key
  62. # - name : faroo
  63. # engine : faroo
  64. # shortcut : fa
  65. # api_key : 'apikey' # required!
  66. - name : 500px
  67. engine : www500px
  68. shortcut : px
  69. - name : 1x
  70. engine : www1x
  71. shortcut : 1x
  72. disabled : True
  73. - name : flickr
  74. categories : images
  75. shortcut : fl
  76. # You can use the engine using the official stable API, but you need an API key
  77. # See : https://www.flickr.com/services/apps/create/
  78. # engine : flickr
  79. # api_key: 'apikey' # required!
  80. # Or you can use the html non-stable engine, activated by default
  81. engine : flickr_noapi
  82. - name : gigablast
  83. engine : gigablast
  84. shortcut : gb
  85. disabled: True
  86. - name : github
  87. engine : github
  88. shortcut : gh
  89. - name : google
  90. engine : google
  91. shortcut : go
  92. - name : google images
  93. engine : google_images
  94. shortcut : goi
  95. - name : google news
  96. engine : google_news
  97. shortcut : gon
  98. - name : google play apps
  99. engine : xpath
  100. search_url : https://play.google.com/store/search?q={query}&c=apps
  101. url_xpath : //a[@class="title"]/@href
  102. title_xpath : //a[@class="title"]
  103. content_xpath : //a[@class="subtitle"]
  104. categories : files
  105. shortcut : gpa
  106. disabled : True
  107. - name : google play movies
  108. engine : xpath
  109. search_url : https://play.google.com/store/search?q={query}&c=movies
  110. url_xpath : //a[@class="title"]/@href
  111. title_xpath : //a[@class="title"]
  112. content_xpath : //a[@class="subtitle"]
  113. categories : videos
  114. shortcut : gpm
  115. disabled : True
  116. - name : google play music
  117. engine : xpath
  118. search_url : https://play.google.com/store/search?q={query}&c=music
  119. url_xpath : //a[@class="title"]/@href
  120. title_xpath : //a[@class="title"]
  121. content_xpath : //a[@class="subtitle"]
  122. categories : music
  123. shortcut : gps
  124. disabled : True
  125. - name : mixcloud
  126. engine : mixcloud
  127. shortcut : mc
  128. - name : openstreetmap
  129. engine : openstreetmap
  130. shortcut : osm
  131. - name : photon
  132. engine : photon
  133. shortcut : ph
  134. - name : piratebay
  135. engine : piratebay
  136. shortcut : tpb
  137. - name : kickass
  138. engine : kickass
  139. shortcut : ka
  140. - name : soundcloud
  141. engine : soundcloud
  142. shortcut : sc
  143. - name : stackoverflow
  144. engine : stackoverflow
  145. shortcut : st
  146. - name : searchcode doc
  147. engine : searchcode_doc
  148. shortcut : scd
  149. - name : searchcode code
  150. engine : searchcode_code
  151. shortcut : scc
  152. disabled : True
  153. - name : spotify
  154. engine : spotify
  155. shortcut : stf
  156. - name : subtitleseeker
  157. engine : subtitleseeker
  158. shortcut : ss
  159. # The language is an option. You can put any language written in english
  160. # Examples : English, French, German, Hungarian, Chinese...
  161. # language : English
  162. - name : startpage
  163. engine : startpage
  164. shortcut : sp
  165. # +30% page load time
  166. # - name : ixquick
  167. # engine : startpage
  168. # base_url : 'https://www.ixquick.com/'
  169. # search_url : 'https://www.ixquick.com/do/search'
  170. - name : twitter
  171. engine : twitter
  172. shortcut : tw
  173. # maybe in a fun category
  174. # - name : uncyclopedia
  175. # engine : mediawiki
  176. # shortcut : unc
  177. # base_url : https://uncyclopedia.wikia.com/
  178. # number_of_results : 5
  179. # tmp suspended - too slow, too many errors
  180. # - name : urbandictionary
  181. # engine : xpath
  182. # search_url : http://www.urbandictionary.com/define.php?term={query}
  183. # url_xpath : //div[@class="word"]//a/@href
  184. # title_xpath : //div[@class="word"]//a
  185. # content_xpath : //div[@class="definition"]
  186. # shortcut : ud
  187. - name : yahoo
  188. engine : yahoo
  189. shortcut : yh
  190. - name : yahoo news
  191. engine : yahoo_news
  192. shortcut : yhn
  193. - name : youtube
  194. engine : youtube
  195. shortcut : yt
  196. - name : dailymotion
  197. engine : dailymotion
  198. shortcut : dm
  199. - name : vimeo
  200. engine : vimeo
  201. locale : en-US
  202. shortcut : vm
  203. #The blekko technology and team have joined IBM Watson! -> https://blekko.com/
  204. # - name : blekko images
  205. # engine : blekko_images
  206. # locale : en-US
  207. # shortcut : bli
  208. # - name : yacy
  209. # engine : yacy
  210. # shortcut : ya
  211. # base_url : 'http://localhost:8090'
  212. # number_of_results : 5
  213. # timeout : 3.0
  214. locales:
  215. en : English
  216. de : Deutsch
  217. he : Hebrew
  218. hu : Magyar
  219. fr : Français
  220. es : Español
  221. it : Italiano
  222. nl : Nederlands
  223. ja : 日本語 (Japanese)
  224. tr : Türkçe
  225. ru : Russian