mirror of https://github.com/searx/searx
Deploying to gh-pages from @ aec6a2656c
🚀
This commit is contained in:
parent
7fce7f2190
commit
f40a70393f
|
@ -36,18 +36,26 @@ Global Settings
|
|||
image_proxy : False # proxying image results through searx
|
||||
default_locale : "" # default interface locale
|
||||
|
||||
# uncomment below section if you want to use a proxy
|
||||
outgoing: # communication with search engines
|
||||
request_timeout : 2.0 # default timeout in seconds, can be override by engine
|
||||
# max_request_timeout: 10.0 # the maximum timeout in seconds
|
||||
useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
|
||||
pool_connections : 100 # Number of different hosts
|
||||
pool_maxsize : 10 # Number of simultaneous requests by host
|
||||
|
||||
#outgoing_proxies :
|
||||
# http : http://127.0.0.1:8080
|
||||
# https: http://127.0.0.1:8080
|
||||
#proxies:
|
||||
# http:
|
||||
# - http://proxy1:8080
|
||||
# - http://proxy2:8080
|
||||
# https:
|
||||
# - http://proxy1:8080
|
||||
# - http://proxy2:8080
|
||||
# - socks5://user:password@proxy3:1080
|
||||
# - socks5h://user:password@proxy4:1080
|
||||
|
||||
# uncomment below section only if you have more than one network interface
|
||||
# which can be the source of outgoing search requests
|
||||
|
||||
#source_ips:
|
||||
# - 1.1.1.1
|
||||
# - 1.1.1.2
|
||||
#source_ips:
|
||||
# - 1.1.1.1
|
||||
# - 1.1.1.2
|
||||
|
||||
locales:
|
||||
en : English
|
||||
|
@ -105,15 +113,16 @@ Global Settings
|
|||
code, like ``fr``, ``en``, ``de``.
|
||||
|
||||
.. _requests proxies: http://requests.readthedocs.io/en/latest/user/advanced/#proxies
|
||||
.. _PR SOCKS support: https://github.com/kennethreitz/requests/pull/478
|
||||
.. _PySocks: https://pypi.org/project/PySocks/
|
||||
|
||||
``outgoing_proxies`` :
|
||||
Define a proxy you wish to use, see `requests proxies`_. SOCKS proxies are
|
||||
not supported / see `PR SOCKS support`.
|
||||
``proxies`` :
|
||||
Define one or more proxies you wish to use, see `requests proxies`_.
|
||||
If there are more than one proxy for one protocol (http, https),
|
||||
requests to the engines are distributed in a round-robin fashion.
|
||||
|
||||
``source_ips`` :
|
||||
If you use multiple network interfaces, define from which IP the requests must
|
||||
be made.
|
||||
be made. This parameter is ignored when ``proxies`` is set.
|
||||
|
||||
``locales`` :
|
||||
Locales codes and their names. Available translations of searx interface.
|
||||
|
@ -139,6 +148,15 @@ Engine settings
|
|||
api_key : 'apikey'
|
||||
disabled : True
|
||||
language : en_US
|
||||
#proxies:
|
||||
# http:
|
||||
# - http://proxy1:8080
|
||||
# - http://proxy2:8080
|
||||
# https:
|
||||
# - http://proxy1:8080
|
||||
# - http://proxy2:8080
|
||||
# - socks5://user:password@proxy3:1080
|
||||
# - socks5h://user:password@proxy4:1080
|
||||
|
||||
``name`` :
|
||||
Name that will be used across searx to define this engine. In settings, on
|
||||
|
|
|
@ -83,18 +83,26 @@ file.</p>
|
|||
<span class="l l-Scalar l-Scalar-Plain">image_proxy</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">False</span> <span class="c1"># proxying image results through searx</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">default_locale</span> <span class="p p-Indicator">:</span> <span class="s">""</span> <span class="c1"># default interface locale</span>
|
||||
|
||||
<span class="c1"># uncomment below section if you want to use a proxy</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">outgoing</span><span class="p p-Indicator">:</span> <span class="c1"># communication with search engines</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">request_timeout</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">2.0</span> <span class="c1"># default timeout in seconds, can be override by engine</span>
|
||||
<span class="c1"># max_request_timeout: 10.0 # the maximum timeout in seconds</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">useragent_suffix</span> <span class="p p-Indicator">:</span> <span class="s">""</span> <span class="c1"># suffix of searx_useragent, could contain informations like an email address to the administrator</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">pool_connections</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">100</span> <span class="c1"># Number of different hosts</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">pool_maxsize</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">10</span> <span class="c1"># Number of simultaneous requests by host</span>
|
||||
|
||||
<span class="c1">#outgoing_proxies :</span>
|
||||
<span class="c1"># http : http://127.0.0.1:8080</span>
|
||||
<span class="c1"># https: http://127.0.0.1:8080</span>
|
||||
<span class="c1">#proxies:</span>
|
||||
<span class="c1"># http:</span>
|
||||
<span class="c1"># - http://proxy1:8080</span>
|
||||
<span class="c1"># - http://proxy2:8080</span>
|
||||
<span class="c1"># https:</span>
|
||||
<span class="c1"># - http://proxy1:8080</span>
|
||||
<span class="c1"># - http://proxy2:8080</span>
|
||||
<span class="c1"># - socks5://user:password@proxy3:1080</span>
|
||||
<span class="c1"># - socks5h://user:password@proxy4:1080</span>
|
||||
|
||||
<span class="c1"># uncomment below section only if you have more than one network interface</span>
|
||||
<span class="c1"># which can be the source of outgoing search requests</span>
|
||||
|
||||
<span class="c1">#source_ips:</span>
|
||||
<span class="c1"># - 1.1.1.1</span>
|
||||
<span class="c1"># - 1.1.1.2</span>
|
||||
<span class="c1">#source_ips:</span>
|
||||
<span class="c1"># - 1.1.1.1</span>
|
||||
<span class="c1"># - 1.1.1.2</span>
|
||||
|
||||
<span class="l l-Scalar l-Scalar-Plain">locales</span><span class="p p-Indicator">:</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">en</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">English</span>
|
||||
|
@ -144,11 +152,12 @@ code, like <code class="docutils literal notranslate"><span class="pre">fr</span
|
|||
</dd>
|
||||
</dl>
|
||||
<dl class="simple">
|
||||
<dt><code class="docutils literal notranslate"><span class="pre">outgoing_proxies</span></code> :</dt><dd><p>Define a proxy you wish to use, see <a class="reference external" href="http://requests.readthedocs.io/en/latest/user/advanced/#proxies">requests proxies</a>. SOCKS proxies are
|
||||
not supported / see <cite>PR SOCKS support</cite>.</p>
|
||||
<dt><code class="docutils literal notranslate"><span class="pre">proxies</span></code> :</dt><dd><p>Define one or more proxies you wish to use, see <a class="reference external" href="http://requests.readthedocs.io/en/latest/user/advanced/#proxies">requests proxies</a>.
|
||||
If there are more than one proxy for one protocol (http, https),
|
||||
requests to the engines are distributed in a round-robin fashion.</p>
|
||||
</dd>
|
||||
<dt><code class="docutils literal notranslate"><span class="pre">source_ips</span></code> :</dt><dd><p>If you use multiple network interfaces, define from which IP the requests must
|
||||
be made.</p>
|
||||
be made. This parameter is ignored when <code class="docutils literal notranslate"><span class="pre">proxies</span></code> is set.</p>
|
||||
</dd>
|
||||
<dt><code class="docutils literal notranslate"><span class="pre">locales</span></code> :</dt><dd><p>Locales codes and their names. Available translations of searx interface.</p>
|
||||
</dd>
|
||||
|
@ -171,6 +180,15 @@ be made.</p>
|
|||
<span class="l l-Scalar l-Scalar-Plain">api_key</span> <span class="p p-Indicator">:</span> <span class="s">'apikey'</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">disabled</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">True</span>
|
||||
<span class="l l-Scalar l-Scalar-Plain">language</span> <span class="p p-Indicator">:</span> <span class="l l-Scalar l-Scalar-Plain">en_US</span>
|
||||
<span class="c1">#proxies:</span>
|
||||
<span class="c1"># http:</span>
|
||||
<span class="c1"># - http://proxy1:8080</span>
|
||||
<span class="c1"># - http://proxy2:8080</span>
|
||||
<span class="c1"># https:</span>
|
||||
<span class="c1"># - http://proxy1:8080</span>
|
||||
<span class="c1"># - http://proxy2:8080</span>
|
||||
<span class="c1"># - socks5://user:password@proxy3:1080</span>
|
||||
<span class="c1"># - socks5h://user:password@proxy4:1080</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<dl>
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue