settings.yml 6.4 KB

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