settings.yml 8.6 KB

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