From 2056b588e5b9c62fbff366386ad612bf79de979c Mon Sep 17 00:00:00 2001 From: dalf Date: Tue, 8 Dec 2020 19:36:18 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2042a19?= =?UTF-8?q?4898baf96e15edeb9268fbec5ecd4423c09=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _sources/admin/installation-searx.rst.txt | 31 +- _sources/admin/settings.rst.txt | 205 ++-- admin/engines.html | 21 +- admin/index.html | 2 +- admin/installation-searx.html | 1236 ++++++++++++++++++++- admin/settings.html | 195 ++-- objects.inv | Bin 2781 -> 2818 bytes searchindex.js | 2 +- utils/index.html | 1 + utils/searx.sh.html | 2 +- 10 files changed, 1480 insertions(+), 215 deletions(-) diff --git a/_sources/admin/installation-searx.rst.txt b/_sources/admin/installation-searx.rst.txt index a368bfe8..3f8904a1 100644 --- a/_sources/admin/installation-searx.rst.txt +++ b/_sources/admin/installation-searx.rst.txt @@ -64,17 +64,38 @@ from the login (*~/.profile*): Open a second terminal for the configuration tasks and left the ``(searx)$`` terminal open for the tasks below. -Configuration -============== -Create a copy of the :origin:`searx/settings.yml` configuration file in system's -*/etc* folder. Configure like shown below -- replace ``searx@\$(uname -n)`` with -a name of your choice -- *and/or* edit ``/etc/searx/settings.yml`` if necessary. +.. _use_default_settings.yml: + +Configuration +============= + +To create a initial ``/etc/searx/settings.yml`` you can start with a copy of the +file :origin:`utils/templates/etc/searx/use_default_settings.yml`. This setup +:option:ref:`use default settings ` from +:origin:`searx/settings.yml` and is recommended since :pull:`2291` is merged. + +For minimal Setup, configure like shown below – replace ``searx@\$(uname -n)`` +with a name of your choice, set ``ultrasecretkey`` -- *and/or* edit +``/etc/searx/settings.yml`` to your needs. .. kernel-include:: $DOCS_BUILD/includes/searx.rst :start-after: START searx config :end-before: END searx config +.. tabs:: + + .. group-tab:: Use default settings + + .. literalinclude:: ../../utils/templates/etc/searx/use_default_settings.yml + :language: yaml + + .. group-tab:: searx/settings.yml + + .. literalinclude:: ../../searx/settings.yml + :language: yaml + + Check ===== diff --git a/_sources/admin/settings.rst.txt b/_sources/admin/settings.rst.txt index 7bd990fb..985c16f8 100644 --- a/_sources/admin/settings.rst.txt +++ b/_sources/admin/settings.rst.txt @@ -9,6 +9,7 @@ file. .. sidebar:: Further reading .. + - :ref:`use_default_settings.yml` - :ref:`search API` .. contents:: Contents @@ -16,46 +17,129 @@ file. :local: :backlinks: entry +.. _settings location: + +settings.yml location +===================== + +First, searx will try to load settings.yml from these locations: + +1. the full path specified in the ``SEARX_SETTINGS_PATH`` environment variable. +2. ``/etc/searx/settings.yml`` + +If these files don't exist (or are empty or can't be read), searx uses the :origin:`searx/settings.yml` file. + + .. _settings global: Global Settings =============== +.. code:: yaml + + general: + debug : False # Debug mode, only for development + instance_name : "searx" # displayed name + +``debug`` : + Allow a more detailed log if you run searx directly. Display *detailed* error + messages in the browser too, so this must be deactivated in production. + .. code:: yaml server: port : 8888 - secret_key : "ultrasecretkey" # change this! - debug : False # debug mode, only for development - request_timeout : 2.0 # seconds - base_url : False # set custom base_url (or False) - themes_path : "" # custom ui themes path - default_theme : oscar # ui theme - useragent_suffix : "" # suffix of searx_useragent, could contain - # informations like admins email address - image_proxy : False # proxying image results through searx - default_locale : "" # default interface locale + bind_address : "127.0.0.1" # address to listen on + secret_key : "ultrasecretkey" # change this! + base_url : False # set custom base_url (or False) + image_proxy : False # proxying image results through searx + default_locale : "" # default interface locale + default_theme : oscar # ui theme + default_http_headers: + X-Content-Type-Options : nosniff + X-XSS-Protection : 1; mode=block + X-Download-Options : noopen + X-Robots-Tag : noindex, nofollow + Referrer-Policy : no-referrer + +``port`` & ``bind_address``: + Port number and *bind address* of the searx web application if you run it + directly using ``python searx/webapp.py``. Doesn't apply to searx running on + Apache or Nginx. + +``secret_key`` : + Used for cryptography purpose. + +``base_url`` : + The base URL where searx is deployed. Used to create correct inbound links. + +``image_proxy`` : + Allow your instance of searx of being able to proxy images. Uses memory space. + +``default_locale`` : + Searx interface language. If blank, the locale is detected by using the + browser language. If it doesn't work, or you are deploying a language + specific instance of searx, a locale can be defined using an ISO language + code, like ``fr``, ``en``, ``de``. + +``default_theme`` : + Name of the theme you want to use by default on your searx instance. + +.. _HTTP headers: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers + +``default_http_headers``: + Set additional HTTP headers, see `#755 `__ + + +.. code:: yaml 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 + 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 : "" # informations like an email address to the administrator + pool_connections : 100 # Number of different hosts + pool_maxsize : 10 # Number of simultaneous requests by host + # uncomment below section if you want to use a proxy + # proxies: + # http: + # - http://proxy1:8080 + # - http://proxy2:8080 + # https: + # - http://proxy1:8080 + # - http://proxy2:8080 + # 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 - #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 - #source_ips: - # - 1.1.1.1 - # - 1.1.1.2 +``request_timeout`` : + Global timeout of the requests made to others engines in seconds. A bigger + timeout will allow to wait for answers from slow engines, but in consequence + will slow searx reactivity (the result page may take the time specified in the + timeout to load). Can be override by :ref:`settings engine` + +``useragent_suffix`` : + Suffix to the user-agent searx uses to send requests to others engines. If an + engine wish to block you, a contact info here may be useful to avoid that. + +.. _requests proxies: https://requests.readthedocs.io/en/latest/user/advanced/#proxies +.. _PySocks: https://pypi.org/project/PySocks/ + +``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. + + - Proxy: `see `__. + - SOCKS proxies are also supported: `see `__ + +``source_ips`` : + If you use multiple network interfaces, define from which IP the requests must + be made. This parameter is ignored when ``proxies`` is set. + +.. code:: yaml locales: en : English @@ -71,59 +155,6 @@ Global Settings ru : Russian ro : Romanian - -``port`` : - Port number of the searx web application if you run it directly using ``python - searx/webapp.py``. Doesn't apply to searx running on Apache or Nginx. - -``secret_key`` : - Used for cryptography purpose. - -``debug`` : - Allow a more detailed log if you run searx directly. Display *detailed* error - messages in the browser too, so this must be deactivated in production. - -``request_timeout`` : - Global timeout of the requests made to others engines in seconds. A bigger - timeout will allow to wait for answers from slow engines, but in consequence - will slow searx reactivity (the result page may take the time specified in the - timeout to load) - -``base_url`` : - The base URL where searx is deployed. Used to create correct inbound links. - -``themes_path`` : - Path to where the themes are located. If you didn't develop anything, leave it - blank. - -``default_theme`` : - Name of the theme you want to use by default on your searx instance. - -``useragent_suffix`` : - Suffix to the user-agent searx uses to send requests to others engines. If an - engine wish to block you, a contact info here may be useful to avoid that. - -``image_proxy`` : - Allow your instance of searx of being able to proxy images. Uses memory space. - -``default_locale`` : - Searx interface language. If blank, the locale is detected by using the - browser language. If it doesn't work, or you are deploying a language - specific instance of searx, a locale can be defined using an ISO language - code, like ``fr``, ``en``, ``de``. - -.. _requests proxies: https://requests.readthedocs.io/en/latest/user/advanced/#proxies -.. _PySocks: https://pypi.org/project/PySocks/ - -``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. This parameter is ignored when ``proxies`` is set. - ``locales`` : Locales codes and their names. Available translations of searx interface. @@ -208,19 +239,7 @@ Engine settings engines, and so won't be described here. -.. _settings location: - -settings.yml location -===================== - -First, searx will try to load settings.yml from these locations: - -1. the full path specified in the ``SEARX_SETTINGS_PATH`` environment variable. -2. ``/etc/searx/settings.yml`` - -If these files don't exist (or are empty or can't be read), searx uses the :origin:`searx/settings.yml` file. - -.. _ settings use_default_settings: +.. _settings use_default_settings: use_default_settings ==================== diff --git a/admin/engines.html b/admin/engines.html index d4ae8a7f..7a17f284 100644 --- a/admin/engines.html +++ b/admin/engines.html @@ -1719,22 +1719,7 @@

y

y

-

seedpeer

-

!speu

-

seedpeer

-

2.0

-

files, music, videos

- -

y

- - - - -

1

- -

y

- -

naver

+

naver

!nvr

xpath

2.0

@@ -1749,7 +1734,7 @@

y

y

-

rubygems

+

rubygems

!rbg

xpath

2.0

@@ -1764,7 +1749,7 @@

y

y

-

peertube

+

peertube

!ptb

peertube

2.0

diff --git a/admin/index.html b/admin/index.html index 567924ab..623300f7 100644 --- a/admin/index.html +++ b/admin/index.html @@ -95,9 +95,9 @@
  • How to update
  • settings.yml
  • diff --git a/admin/installation-searx.html b/admin/installation-searx.html index 5e5da38a..c34c35d1 100644 --- a/admin/installation-searx.html +++ b/admin/installation-searx.html @@ -213,27 +213,1245 @@ terminal open for the tasks below.

    -

    Configuration

    -

    Create a copy of the git://searx/settings.yml configuration file in system’s -/etc folder. Configure like shown below – replace searx@\$(uname -n) with -a name of your choice – and/or edit /etc/searx/settings.yml if necessary.

    +

    Configuration

    +

    To create a initial /etc/searx/settings.yml you can start with a copy of the +file git://utils/templates/etc/searx/use_default_settings.yml. This setup +use default settings from +git://searx/settings.yml and is recommended since PR 2291 is merged.

    +

    For minimal Setup, configure like shown below – replace searx@\$(uname -n) +with a name of your choice, set ultrasecretkeyand/or edit +/etc/searx/settings.yml to your needs.

    Check

    diff --git a/admin/settings.html b/admin/settings.html index 17bcd887..ea4dfca6 100644 --- a/admin/settings.html +++ b/admin/settings.html @@ -58,55 +58,124 @@ file.

    +
    +

    settings.yml location

    +

    First, searx will try to load settings.yml from these locations:

    +
      +
    1. the full path specified in the SEARX_SETTINGS_PATH environment variable.

    2. +
    3. /etc/searx/settings.yml

    4. +
    +

    If these files don’t exist (or are empty or can’t be read), searx uses the git://searx/settings.yml file.

    +
    -

    Global Settings

    +

    Global Settings

    +
    general:
    +    debug : False # Debug mode, only for development
    +    instance_name : "searx" # displayed name
    +
    +
    +
    +
    debug :

    Allow a more detailed log if you run searx directly. Display detailed error +messages in the browser too, so this must be deactivated in production.

    +
    +
    server:
         port : 8888
    -    secret_key : "ultrasecretkey" # change this!
    -    debug : False                 # debug mode, only for development
    -    request_timeout : 2.0         # seconds
    -    base_url : False              # set custom base_url (or False)
    -    themes_path : ""              # custom ui themes path
    -    default_theme : oscar         # ui theme
    -    useragent_suffix : ""         # suffix of searx_useragent, could contain
    -                                  # informations like admins email address
    -    image_proxy : False           # proxying image results through searx
    -    default_locale : ""           # default interface locale
    -
    -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
    -
    -    #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
    -
    -    #source_ips:
    -    #    - 1.1.1.1
    -    #    - 1.1.1.2
    -
    -locales:
    +    bind_address : "127.0.0.1"      # address to listen on
    +    secret_key : "ultrasecretkey"   # change this!
    +    base_url : False                # set custom base_url (or False)
    +    image_proxy : False             # proxying image results through searx
    +    default_locale : ""             # default interface locale
    +    default_theme : oscar           # ui theme
    +    default_http_headers:
    +        X-Content-Type-Options : nosniff
    +        X-XSS-Protection : 1; mode=block
    +        X-Download-Options : noopen
    +        X-Robots-Tag : noindex, nofollow
    +        Referrer-Policy : no-referrer
    +
    +
    +
    +
    port & bind_address:

    Port number and bind address of the searx web application if you run it +directly using python searx/webapp.py. Doesn’t apply to searx running on +Apache or Nginx.

    +
    +
    secret_key :

    Used for cryptography purpose.

    +
    +
    base_url :

    The base URL where searx is deployed. Used to create correct inbound links.

    +
    +
    image_proxy :

    Allow your instance of searx of being able to proxy images. Uses memory space.

    +
    +
    default_locale :

    Searx interface language. If blank, the locale is detected by using the +browser language. If it doesn’t work, or you are deploying a language +specific instance of searx, a locale can be defined using an ISO language +code, like fr, en, de.

    +
    +
    default_theme :

    Name of the theme you want to use by default on your searx instance.

    +
    +
    +
    +
    default_http_headers:

    Set additional HTTP headers, see #755

    +
    +
    +
    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 : ""        # informations like an email address to the administrator
    +    pool_connections : 100       # Number of different hosts
    +    pool_maxsize : 10            # Number of simultaneous requests by host
    +# uncomment below section if you want to use a proxy
    +#    proxies:
    +#        http:
    +#            - http://proxy1:8080
    +#            - http://proxy2:8080
    +#        https:
    +#            - http://proxy1:8080
    +#            - http://proxy2:8080
    +# 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
    +
    +
    +
    +
    request_timeout :

    Global timeout of the requests made to others engines in seconds. A bigger +timeout will allow to wait for answers from slow engines, but in consequence +will slow searx reactivity (the result page may take the time specified in the +timeout to load). Can be override by Engine settings

    +
    +
    useragent_suffix :

    Suffix to the user-agent searx uses to send requests to others engines. If an +engine wish to block you, a contact info here may be useful to avoid that.

    +
    +
    +
    +
    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.

    +
      +
    • Proxy: see.

    • +
    • SOCKS proxies are also supported: see

    • +
    +
    +
    source_ips :

    If you use multiple network interfaces, define from which IP the requests must +be made. This parameter is ignored when proxies is set.

    +
    +
    +
    locales:
         en : English
         de : Deutsch
         he : Hebrew
    @@ -122,51 +191,12 @@ file.

    -
    port :

    Port number of the searx web application if you run it directly using python -searx/webapp.py. Doesn’t apply to searx running on Apache or Nginx.

    -
    -
    secret_key :

    Used for cryptography purpose.

    -
    -
    debug :

    Allow a more detailed log if you run searx directly. Display detailed error -messages in the browser too, so this must be deactivated in production.

    -
    -
    request_timeout :

    Global timeout of the requests made to others engines in seconds. A bigger -timeout will allow to wait for answers from slow engines, but in consequence -will slow searx reactivity (the result page may take the time specified in the -timeout to load)

    -
    -
    base_url :

    The base URL where searx is deployed. Used to create correct inbound links.

    -
    -
    themes_path :

    Path to where the themes are located. If you didn’t develop anything, leave it -blank.

    -
    -
    default_theme :

    Name of the theme you want to use by default on your searx instance.

    -
    -
    useragent_suffix :

    Suffix to the user-agent searx uses to send requests to others engines. If an -engine wish to block you, a contact info here may be useful to avoid that.

    -
    -
    image_proxy :

    Allow your instance of searx of being able to proxy images. Uses memory space.

    -
    -
    default_locale :

    Searx interface language. If blank, the locale is detected by using the -browser language. If it doesn’t work, or you are deploying a language -specific instance of searx, a locale can be defined using an ISO language -code, like fr, en, de.

    -
    -
    -
    -
    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. This parameter is ignored when proxies is set.

    -
    locales :

    Locales codes and their names. Available translations of searx interface.

    -

    Engine settings

    +

    Engine settings

    -

    use_default_settings

    +

    use_default_settings

    Note

    If searx is cloned from a git repository, most probably there is no need to have an user settings.

    diff --git a/objects.inv b/objects.inv index c7cfd0f8f02331ac337e3bb11d84bd04ddec9f9e..219a22720e6c29e862372cf324b0db02d28e8c09 100644 GIT binary patch delta 2702 zcmV;93UT$_6@nI!kbgVgObmFjj_pkjLC{c3>~6+tQ6o{dJEy$HzTQ4bimakUifpxJ zF&A56)%TI&PyMkwo!4bvsamW%k+*NGIes{(vabYt$9gTR?y8%pTsFtcy*^Yc)Z-V7 zXOYfMX!}&`*PnaQ9u4oduL~_z&Ava!oTU6ur)qd?WnO&+wtrf!o4oBrx$fJq!Dq?V zdAsWmqSjx5P^)z*i{HVNmj_v2<&9*WE>3Ol zKv`9|ED5Snij22jOM-&uO+V&JFTDEyoJV%!FQHzFcjsSrF=LX!rb~|~7+kfgHw|yj@gKG6LhT7&}%XLEc z4QoZ$SK92qw<9q$RS(~sI4vYVmV44NhfhoQ6+j9vy9C%t5Iwvd5AMA5O_^(PYFd41 z@EIsT4riXKd?TvZK!G7knJC)K*e{r!6ve5Xy~1Z47q{qZ{TnM3SR=5NZO8tF+W$`VkZ;VgfDK&KRZPGK zf@^xPyj%~9`F{im1|+nrg5c`5tC zjDPpu3K$^zrUBEKP2!8miJ3$gu+hC313q~xcW`b>=6~FT!vC(-2pQ&sq7UY=?XTcZts9U))(Z!@M*c4YJ?alsL?|NB^p;Ob& zE$Su+Oo~?I+F9McBdXF;g(j=7^9YO>dU&&EKjs<8fYY5DUwPn`W)R#k@%IIwhNk{qUB#M#~e~ zoS`u|;bIzA8nr|IEFhGPzQna7!%t4@39=ZWaXJza#&jlw>HFNv;u*F=tEZ4r5`PTX zW=nq`WR|2Ak55y$X+xluf(<&@4fJwFY33y12_>WZ09$TC2_pv2Q+IKwJrN=FX>2gq z$!7+;Z1SO_tBpR@oHc8&mKZXl%~9K0G<(2-Lo>T*;w?Wkm57HkOdK$1ZgjcRz4`g+ zxBvaxG2`yDPTNHPwhkt-W??JlT zGtzZEU3UAB9!nUbH0%MirwTq(U`H2I@&Wd+lBfPf;Xk;W*(q;s%QVX%nrXs9#capfHdP%G@erPTxaXo}tzv{C_?WI3#%EW*MAY zRsRDF-ko4OoP|X0I_DiNlTonBt?^h~yW4CvSxZ2Le*()nQBAn^2*8T(P~<9x({hGZ_&=ICVw5UU{PDMkMp|Nt9EV! z88uF7*Y;nBQ0M>KK2fMma9Djl>i=Nzkn+jGo+4^Ta+407Wwc7>4~ID{o)Ni~0ur`L zrcUz&Z&kTf{i{XYNmCC)8rV5Z=bP&MFpMfk)$tKocC9QIvKUoj`81$tFtWDQ&O_cl zr|iXq3AH(C<9{><3`lCeyE{vUT4rJh+&Q$inZkKI>V5ctIMu?w%-bWxDciGPr_7D= zovfcn_%9E4NQgC$vs9$!mq{$VRh2kD3#j#=h85|gP3M;_Eh^LEK6*$;b}%KAB@<#b z?QA?c3~^`yw7EV%m_gA_g?qCkhVge~4+M3I!visO#(!8BzznI^MwLhQes*k-vKcM@ z-dy`*u_VkL)t32J(sPM9;=|mNt1Wl<$9et?OJrd;*cOz`?jh!Jy3y5LqSUs+cW!jO zsvEU-$6DtTLvHH9js@k;s}mj@GxS}Hr^h-!r#*9nkF?{B?1Xf@lO;;jJbgb))$-wT zcy5P{*MGxAjxf9`CimTbQT}-`CINOF-@qC*raV^{5{{zFi_Ygv)cbxSM259(Op%QK z*nN@Jd{U}1S2`Q@Mv8yPh6K;LB8=mNNt7_X5C|Aj zmjz(myp0m8dsC3w;(lQ*273j!p`W185NHRrfk8j;*@1rGu}A$ARyKs5u(5{4#vn7- zBJ+WaeVkm0TvwG=I{_A_&0baeOut6)euuK?_e2DR9mPH9txxnvbD8s$l$kHWXSMyEd<~(`{~buOIFl4Q5Pg zQRu!E3BFfLLS6|;tb19NJJsnf78vW0{=@K2WKnNrEfP$sK-y3E5^}CuQK+gqNu_#J zc(l(Xu#uH+VSgARCRHHiFY1kH#hO-`?`3(-WNjv*a33z~QoP3^wm2Gg)iOZY#bW1R z&;ZG*!f8oJjkTzF=anQRc;4j2PRuJ2C=g_CQtud6q;x^-RkUYx5rn!oNRVgxYo_Y` zjI6~ZdTYy5qG;LXMR6Zl(I+h$wmt#@{-5h`|JH5g8GmhyL2dg;I(yaXV@$Qh!IJBQ z?i<#MuCKINfA2?9XsRB*Ik8))0#zOeWj3Fd?khkPUbYFct3megcHF!D(l=$U#i?QS zYlF|g3e<4ssmj-)iVYMPvXqIU#fq-{M9)C_v;L4P6B0P$XXa$%A78p{sVfmnmy*E>OnMLOIY-<;x$z4}!%d7XI6bJtC z!^aOF{us)b`m3Pc$=twKSE_-jg*DFZW!=BCLV+~`TiJH(ABg^Es)c-QrUh)^qNZX2 zJ_uaXgKg!?ezU)z#!}jucI*%)Yc1MMUf>v96@O~K2dBs@=sr()k&__u2Yp?eq3Cu3 z%n9K-vuZa&!-Bxg*I`?cp&v`ht--s4f&<}dvoTF3C|)gX)>gn#0@wTooP?uNZ?kxm zBh`2gzG$+qnpPgn4n8%ClX`67UhXA0#i9_M9k!$DTUzTu*PEl>srnDGD3&|34&zex zg@5VqgRNk|=$i&iV>UToOm@uVgaHfPJ7d5nZ{!yCP09R^n@ITIwHhhIc+lyCd1|>v z>∓3-)a(Hn~|Y-}x>2#(L7CZ?63o9mQGjg)QnWO>i(NT9IpKb^DII{+!hvP5%nXWPfxm`A3v9&siy&N*x(Y?-m?*zrK`ed6$vQ zp*ecEZv&FRA>6*yxdSNtR60!7X>cnAjR8MY*OtXZ<#B! zI+4v83WFUkrpHPH+vl$Wj;?x7&FrL!_k7<}BJR#GaG;>M!E%Sa z`Q`b4|M_pnjL%c-O|_s(bygToGJhp3sD;vq9>jmzuSHpcr83R1Z*SYY*&XD+zk>}@ ziVW918&+kYo7xmBEVLg0+no4b$d@+ae$eM6h(sYEDFw&j#l0C>{wdiximd?enm$Gb zK89Yn!{3_!`Ctd0NZaXhW8;=}^CGe(F4k=oSST33&%Nk$s)v5;yP_9vS%2KI9s>=% zgWBzm5!SVI+3iAkOks?*VGDqs0(_;wjxLtu1ML?#4qF;ynttb5M{96?a7lvB1w54C zriIaH4{EN|9dzI^+f6;kawiB>t`+yFu^Wn9hu49>iwX|A0;5du(HS{%2BFbwzD*yH zPC0uj=L7d{B9=wzjTvRPf`5Y)MA&b#z3J~I$lj_lJ(g`g=f zuQJz`mswe*@-nGxOVG}kXPIke%(Sc$S(-%hC7j=)m5uI}&2u=E#Jo$$WhQ9KYhm0I z#_cvEk}?Q5BhDN+9w#10-e3_RY@#_7^&uq(fI(~ka|_0pzK5_pLx0pF{w}C+Oz_6d zGCH?V{{sx)?O@xTg+gxUBInLm$jm8`6_v;nb}=|XuFM-pBu8302uZLkaHQD7P9+cc zikhP$)-1M>Lj%aOf9ydD6}LMuSdpbW(a!-)AJ`nD#d3m)NQ!3RQG#nSCqkzKQNCU% zWTDi7wqG_a21gVfd4K#991BEJ`k)qaF5(bkq}mkbf=2BD712KjWYE&PxihF~9uROE zvGxKQS7pKhH%IO&DDJ`QE_B71d`<6PSLbfO;BDN)u5whEJF29m62}y>)5|lSp2@b4 zLB5ksimD(Cla*@4U6X^{s+s4kWUtN7g0Hin{eo?q6L{h9LBJCMdn5d z2-qr_+RYQbg>no1vt`{&lMh1~SUF7R>*{htQexqz!14}Y;7Zj^L)g8`h+~y!n(}cBb-wX0R+snLWUn$6=$ZyF{vOh40*8 zy{sFRcE?)h6GLwD!A=G1omVG57G~(X77vegehxizgO9S~jqF5pypttKM4rB%rEK|d zIXt(*#((Q!5=RBJ54DO>>?v2h0F2UuBN5O5S)_L^>f<(B*e@~Gh zc;1tVixZL~#mf&4LRnC{T-Bh#bnI9hGo*9JaDTM4(0hxwSDY@IPW+T8xhzio;%Ka( zlP2&_QcP>Q<2$IBcP1AM?*s94glC@auw`-&hG!qROQeT%O`K zil>ztvJ-hWTk{iyW zn}2KW>2i)#Mm#6{kN9u6B>yG|XZ`NQLEoG_!u>vD;5WUe2_|TIQ)9l`yQ{(9oUrky zDwCOreyp+ze%uoNa>e?nD4RN#qRafXi!R|TM7`DA`J0IES5jtncQjSzha(gWx%xk4 zv9pW>V^=zHq|=;vppeR^gURt`FNS+VkYQSPe(otIdpW70ogfwu&_Vb--~+c7-~*>N z;!l{qkb1)K85QfMXKoJWeZ760+!|b0l~!8;W}wa9RQpOl*zkU;vFIl^M1>W_J?fn= W^m}vP_sa4PmP?;k+5Z8nIRgvEY&n?# diff --git a/searchindex.js b/searchindex.js index 7b4f3ab7..4fa50756 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["admin/api","admin/architecture","admin/buildhosts","admin/engines","admin/engines/recoll","admin/filtron","admin/index","admin/installation","admin/installation-apache","admin/installation-docker","admin/installation-nginx","admin/installation-searx","admin/installation-uwsgi","admin/morty","admin/plugins","admin/settings","admin/update-searx","blog/admin","blog/command-line-engines","blog/index","blog/intro-offline","blog/lxcdev-202006","blog/private-engines","blog/python3","dev/contribution_guide","dev/engine_overview","dev/index","dev/makefile","dev/plugins","dev/quickstart","dev/reST","dev/search_api","dev/translation","index","user/index","user/own-instance","user/search_syntax","utils/filtron.sh","utils/index","utils/lxc.sh","utils/morty.sh","utils/searx.sh","utils/standalone_searx.py"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["admin/api.rst","admin/architecture.rst","admin/buildhosts.rst","admin/engines.rst","admin/engines/recoll.rst","admin/filtron.rst","admin/index.rst","admin/installation.rst","admin/installation-apache.rst","admin/installation-docker.rst","admin/installation-nginx.rst","admin/installation-searx.rst","admin/installation-uwsgi.rst","admin/morty.rst","admin/plugins.rst","admin/settings.rst","admin/update-searx.rst","blog/admin.rst","blog/command-line-engines.rst","blog/index.rst","blog/intro-offline.rst","blog/lxcdev-202006.rst","blog/private-engines.rst","blog/python3.rst","dev/contribution_guide.rst","dev/engine_overview.rst","dev/index.rst","dev/makefile.rst","dev/plugins.rst","dev/quickstart.rst","dev/reST.rst","dev/search_api.rst","dev/translation.rst","index.rst","user/index.rst","user/own-instance.rst","user/search_syntax.rst","utils/filtron.sh.rst","utils/index.rst","utils/lxc.sh.rst","utils/morty.sh.rst","utils/searx.sh.rst","utils/standalone_searx.py.rst"],objects:{"":{standalone_searx:[42,0,0,"-"]},standalone_searx:{get_search_query:[42,1,1,""],json_serial:[42,1,1,""],no_parsed_url:[42,1,1,""],parse_argument:[42,1,1,""],to_dict:[42,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:function"},terms:{"000":8,"0pointer":12,"0xa9":30,"100":[3,15],"1080":15,"115":23,"120":24,"127":[5,8,10,11,12,13,21,27,37,38,40,41],"1337x":3,"135":30,"140":39,"147":39,"156":21,"15px":30,"168":8,"1700":20,"174":21,"1756":[27,30],"180":30,"1803":21,"1823":22,"184":21,"192":8,"200":[11,21],"2000":30,"200331":39,"2017":[17,23],"2019":20,"2020":[18,22,39],"202006":[19,33],"2021":39,"2023":39,"2024":39,"2030":39,"2122":30,"2128":18,"216":21,"246":39,"296":39,"300":25,"3000":[8,10,13,21,38,39,40],"370":30,"3eff":21,"400":30,"4004":[5,8,10,21,37,38,39],"4005":[37,38,39],"40px":30,"429":21,"500":30,"50593":24,"525":30,"573b":21,"585":30,"666":12,"700":30,"70px":30,"8000":24,"8080":[9,15,21,39],"820000000":42,"822":30,"833067":12,"8888":[5,8,10,11,12,15,21,27,37,38,41],"9b65":21,"\u65e5\u672c\u8a9e":15,"abstract":19,"boolean":[25,30],"break":[24,30],"byte":25,"case":[8,10,15,21,22,29,35,37,40,41],"char":18,"class":8,"default":[5,8,9,10,12,13,15,18,23,24,27,28,30,31,33,35,36,37,38,39,40,41,42],"enum":18,"espa\u00f1ol":15,"export":[4,9,10,11,21,27,37,39,40],"fran\u00e7ai":15,"function":[20,25,28,30,39,42],"import":[10,20,30,42],"int":[5,25,30],"long":35,"new":[3,8,9,10,11,12,17,18,20,22,24,27,28,29,31,32,40,42],"null":[8,10,24,42],"public":[1,6,7,14,18,30,38,39],"return":[14,15,18,20,26,28,30,35,42],"schr\u00f6dinger":30,"short":29,"static":[2,5,10,28],"switch":[8,24],"t\u00fcrk\u00e7e":15,"true":[0,5,8,10,11,12,15,20,25,28,29,30,31,37,40,42],"try":[11,15,27,29,35],"var":8,"while":[12,20,21,27,30],And:[8,18,21,28,30],But:[17,23,25,35,39],DNS:[38,39],For:[2,5,8,9,10,11,12,21,22,24,27,29,30,31],IPs:[5,38],Not:30,One:[12,17],That:30,The:[0,2,6,7,9,12,15,18,22,25,27,30,31,35,37,38,39,40,41],Then:[20,23,29,32],There:[8,12,24,30],These:[25,30],USE:8,Use:[5,8,10,24],Used:[8,15],Uses:15,With:[8,15,21,27,30,39],__dict__:30,__init__:28,__name__:30,_anchor:30,_chapter:30,_doc:30,_dot:30,_rest:30,_section:30,_sphinx:30,_subsect:30,_svg:30,a2disconf:8,a2dismod:8,a2dissit:8,a2enconf:8,a2enmod:8,a2ensit:8,abbrev:36,abl:[2,15,18,20,24,25,30],about:[1,21,22,24,27,33,39],abov:[8,11,15,21,24,30,31,39],absenc:30,abus:[5,35],academ:3,accept:[5,11,20,36],access:[4,5,8,14,17,19,20,21,30,33,35],access_log:10,accord:[9,12,15],account:[8,10,21,32,37,38,40,41],accusam:30,acg:3,acgsou:3,achiev:4,acknowledg:19,across:15,act:[13,17],action:[0,5,12],activ:[8,10,11,12,13,15,21,23,24,29,31,37,40,41],actual:15,adapt:25,add:[7,8,10,12,13,18,22,24,27,28,30,36,37,38,40,41],added:[12,18,21,22,27,28],adding:[20,28,30,38],addit:[2,25,27,29,30],addition:[33,35],address:[13,15,25,35,38],adipisici:30,adjust:27,admin:[15,19,21,22,30,33,38,40],administr:[15,17,18,20,22,31,33,35],admonit:26,adopt:24,adorn:30,ads:35,advantag:[17,30],advertis:35,advis:[5,8,10],af2cae6:30,affect:17,after:[11,23,28,29,30,32,37,40],again:27,agent:[5,11,14,15,25],aggreg:[5,33,35],agpl:[38,39],aim:[17,27,30],aka:27,alia:10,align:30,aliquid:30,aliquyam:30,all:[0,7,8,13,15,21,23,24,25,27,28,30,31,37,38,39,40,41,42],allow:[8,11,15,18,30,36],allowoverrid:8,alltogeth:6,along:5,alreadi:[8,10,21,24,29],also:[2,8,9,11,12,21,24,27,30,35,36,38],alt:30,alter:24,altern:[7,10,15,29,30,39],alwai:[9,10,21,24,25,29,35,37,40],amd64:[37,40],amet:30,among:[24,35],amsmath:30,analog:21,analysi:2,ancel:30,anchor:26,ani:[2,7,8,12,18,24,27,30,31,33,38,42],annoi:30,anonym:[33,35],anoth:[12,15,17,21,25,30,39],answer:[15,30,35,42],anymor:8,anyon:33,anyth:[15,23,35],anywai:[27,30],apach:[1,5,6,7,12,15,33,37,38,39,40,41],apache2:8,apache2ctl:8,api:[4,6,15,22,25,26,32,33,37],api_kei:[15,25],apikei:15,apk:3,apkm:3,apkmirror:3,app:[3,8,10,12,21,30,37,40,41],appear:[29,30],append:20,appli:[15,16,24],applic:[5,10,12,15,17,21,41],approach:12,appropri:18,april:39,apt:[2,8,10,11,29,30],arbitrari:[18,20,25],arch:[0,2,3,8,10,11,12,15,22,30],architectur:[5,6,7,8,10,21,33,37,40,41],archiv:3,archlinux:[3,12,22,39],arg:42,argpars:42,argument:[13,14,24,30,42],arrai:25,arrow:30,art:[30,31],articl:26,arx:3,arxiv:3,asciimoo:[32,37,40],ascrib:30,aspect:[21,24],assert:24,assign:25,assum:[11,30],asterisk:30,attach:28,attend:21,attent:30,attribut:30,audienc:30,author:[24,30],auto:[21,30,32,39],autobuild:[24,27],autocomplet:[0,9,31],autodoc:30,autoindex:8,autoindex_modul:8,automat:[12,14,30],avail:[8,10,12,14,15,18,20,24,29,31,35,37,40,41],avoid:[5,7,14,15,18],awar:[8,30,38],babel:[2,11],back:21,backquot:30,backslash:30,backup:38,balanc:27,ban:35,bang:15,bar:[6,30,37,40],barrier:17,base:[2,4,9,11,15,18,20,21,25,27,31,39],base_url:[4,9,10,15,25],baseprofil:30,bash:[11,21,30,37,38,39,40],basic:[26,39],batch:38,baz:30,becaus:[17,22,24,25,29,32,35],becom:[21,30],been:[18,20,21,24],befor:[7,11,12,21,23,24,27,28,29,30,35,38,39],beginn:10,behavior:30,behaviour:[12,24,28],being:[5,15,17,23,33],below:[5,7,11,12,18,24,29,30,32],benefit:22,besid:35,best:[2,27,30,35,38],better:[2,8,10,25,27,35],between:[5,25,30],big:30,bigger:15,biggest:17,bii:3,bin:[2,3,11,12,23,27,29,37,40],binari:[37,40],bind:9,bind_address:[9,15],bing:[3,15],bing_imag:3,bing_new:3,bing_video:3,bit:[12,30],bitbucket:[0,3],biv:3,black:30,blank:[15,30],block:[5,15,26],blocker:21,blog:[12,21,30,33],bodi:[11,24,30],boilerpl:[11,21,27],bold:30,boldfac:30,bool:25,born:24,bot:21,both:[12,22,23,24,31,35],botlimit:5,bottom:[14,28],boundingbox:25,box:[1,7,33,39],branch:[24,27,38],brand:[27,38],bring:[27,30],broken:30,browser:[11,15,17,21,23,24,27,35,39],btdigg:3,bug:[12,19,27,29],buggi:12,bugreport:[12,24],build:[1,6,7,11,21,26,39],buildenv:27,builder:30,buildhost:[6,21,27,33,38,41],built:[24,25,29,30],builtin:[6,28,33],bundl:11,c3tv:3,calcul:10,call:[17,18,21,22,27,32,39,42],callback:28,can:[0,1,2,4,5,7,8,9,10,11,12,13,15,17,18,20,21,22,23,24,25,27,28,29,30,33,35,37,39,40,41],cancel:30,cannot:[2,30,35,37,40],capabl:[17,24],caplabl:20,captcha:35,caption:30,cardin:24,care:[15,18,30,38,39],carv:22,cat:[37,39,40],catcher:30,categori:[0,3,14,15,20,25,30,31,36,42],category_choic:42,caution:30,caveat:30,ccc:3,cdn:2,cell:30,cento:39,centos7:39,cfg:[3,30],cgi:12,chain:27,chainabl:36,chang:[12,15,21,23,24,27,30,38],chapter:[5,23,24,30,40,41],charact:[18,24,30],chdir:[12,21],check:[2,6,18,20,21,24,25,27,29,32],checker:27,checkout:24,chmod:12,choic:[7,11,21,30,35,38],choos:[7,24,25],chown:[8,10,11,12,37,40],chronolog:30,citi:25,classifi:30,clean:[26,39],clear:35,cli:32,client:21,clita:30,clock:23,clone:[7,9,10,11,15,21,24,27,29,41],close:[5,11],cmd:[21,38,39],code:[3,12,15,20,26,27,29,31,35,38,39,42],codebas:17,codeberg:3,coffe:39,col:30,colleagu:22,collect:2,colon:30,colspan:30,column:30,com:[7,9,11,21,25,27,29,30,31,32,37,39,40,41],combin:8,come:[5,10,22,23,24,27,35,39],comfort:[12,30],comma:[18,22,31],command:[2,5,8,11,12,19,21,23,24,29,30,32,33,37,40,41,42],comment:[8,10,11,30,37,39,40],commit:[21,27,29,32],commodi:30,common:[12,29,33,35,37,40,41],commonli:30,commun:[8,10,15,20],compact:30,compani:35,compar:[8,10,12,21,39],compat:23,compil:[8,26,32],complet:[5,12,24,31,37,39,40,41],compon:[8,28,38],compromis:35,comput:[18,35],con:30,conatin:21,concern:[18,24],conclus:34,concret:[22,30],condit:30,conf:[2,8,10,30,37,40],config:[0,12,22,25,30,32,37,38,39,40,41],configur:[6,8,9,10,12,15,17,18,20,21,22,26,30,32,35,37],conflict:38,confnam:12,confus:30,connect:[5,10,11,18,20,33],consectetur:30,consequ:[15,24],consequat:30,consetetur:30,consid:7,consist:21,construct:[25,30],consult:29,contact:15,contain:[11,14,15,18,19,29,30,33,38,39],content:[4,6,19,26,33,34,35,38],context:[28,30,39],continu:30,contribut:[1,2,21,26,27,33],contributor:30,control:[8,12,35],convent:24,convert:[14,30],cooki:[25,33,35],copi:[9,11,24,30,39],copyright:30,core:[2,12,20],corner:24,correct:[10,15],correctli:10,correspond:12,could:[12,15,18,25,30],count:30,countri:[15,25],courgett:31,cours:30,coverag:29,crawler:30,creat:[6,7,8,9,10,12,15,18,20,21,23,29,30,31,32,38,41],creation:[2,30],creativ:22,cross:30,crossref:3,cryptic:29,cryptographi:15,cspan:30,css:[14,28],css_depend:28,csv:[5,31],csv_tabl:30,ctan:30,cthulhu:36,ctrl:[11,21,27],ctx:28,cup:39,curl:11,currenc:3,currency_convert:3,current:[14,15,20,24,25,32,36],custom:[15,24,30,36],customiz:[0,17],customlog:8,cycl:[21,27],daemon:[37,40,41],dai:[12,27,31,42],daili:21,dailymot:3,dalf:1,danger:30,data:[6,18,25,30,35],databas:[18,22,30],date:[0,25],datetim:[25,30],daunt:17,dbpedia:31,ddd:3,ddg:[3,36],ddi:3,de_d:15,deactiv:[15,37,40,41],debian:[2,6,10,11,12,16,30],debug:[11,15,21,26,27,37,38,40,41],decid:[17,27],decim:25,dedic:[12,21,30],deeper:[27,30],deezer:3,def:[20,25,28,30],defaul:30,default_local:[0,15],default_on:28,default_them:[0,15],defin:[15,28,30],definit:3,dejavu:2,delet:[15,31,32,39],delimit:[18,30],demon:11,demonstr:10,deni:8,depend:[5,6,8,10,14,17,20,21,23,25,27,29,30,31],deploi:[9,15,27,30],describ:[5,7,8,12,15,21,27,30,41],descript:[14,24,28,30,37,40],deserv:24,design:[20,30],desir:[25,29],desktop:[4,21],detail:[8,15,20,30],detect:15,deutsch:[0,15],dev:[2,8,10,11,24,27,30],devel:[2,11],develop:[2,11,15,17,18,19,22,23,24,27,30,33,38],deviantart:3,dfrac:30,diam:30,dict:[18,25,30,42],dictzon:3,didn:15,diff:30,differ:[8,10,12,14,15,21,23,24,25,30,39],digest:14,digg:3,digit:33,digraph:30,dir:[11,37,40],direct:[8,26,30,37,40],directli:[10,15,39],directori:[3,8,9,12,18],disabl:[3,6,11,12,14,15,21,27,28,30,31,38,39],disabled_engin:31,disabled_plugin:31,disadvantag:30,discoveri:[18,20,22],discret:38,displai:[2,9,14,15,25],display_error_messag:[15,25,30],displaystyl:30,dispos:38,disrespect:24,dist:[24,27],distinguish:30,distribut:[8,10,12,15,21,22,30,37,40],distributor:6,dive:35,divid:21,dl_prefix:4,dnf:[2,8,10,11,30],doai_rewrit:31,doc:[3,6,8,12,21,26,30,39],docker:[6,7,27,33],dockerfil:9,docs_url:27,doctest:30,doctre:30,docuemt:2,document:[4,8,12,20,22,27,30,33,39],documentroot:8,docutil:30,doe:[4,8,12,17,20,21,25,27,30,31,34],doesn:15,doi:14,dolor:30,domain:[4,30],domin:24,don:[8,15,23,25,27,30,33],done:[8,10,27,30,38,39],dontlog:8,dot:2,doubl:30,download:[4,7,21,27,30,37,40],drop:23,dry:9,dsitro:21,duckduckgo:[3,15,31,36],duckduckgo_definit:3,duckduckgo_imag:3,duden:3,due:[37,40],dump:42,duo:30,duref:30,dvisvgm:2,e0b3:21,e97:21,each:[12,15,18,21,30,31,39,42],easi:[21,33],easier:24,easiest:18,easili:24,echo:[11,37,39,40],ecosystem:30,ecretvalu:15,edit:[11,12,17,21,24,27,30,35,40],effect:[7,24,30],egg_info:27,eirmod:30,either:29,elasticsearch:18,element:[18,30],elimin:29,elit:30,elitr:30,els:39,emac:30,email:15,emb:[6,30],embed:[0,9,30],emperor:12,emphasi:30,empti:[4,8,15,30,31],en_u:[15,25],enabl:[0,8,10,11,12,18,22,24,27,28,29,31,38],enabled_engin:31,enabled_plugin:31,encapsul:21,enclos:30,encod:[12,30],encourag:30,encrypt:33,end:[23,30,39],endfor:30,engin:[0,6,11,17,19,24,26,29,30,31,33,35,36,37,40,42],engine_c:42,engine_categori:42,english:[0,15],enim:30,enough:[7,8,10,32],enpoint:31,ensur:24,ensure_ascii:42,enter:[11,23],entri:[9,26,38,39],env:[8,12,21,27,29,38,39],environ:[9,10,11,15,21,24,26,33,37,39,40,41],eof:[37,39,40],eol:39,eos:30,equat:[2,26],erat:30,erowid:3,error:[3,15,18,25,29,30],error_log:10,escap:30,especi:30,esperanto:0,essenti:[2,11],est:30,etc:[5,8,9,10,11,12,15,21,24,37,41],eth0:[21,39],eto:3,etool:3,etymonlin:3,evalu:[30,39],even:[12,21,39],event:12,ever:39,everi:[15,21,24,25,35,39],everyon:[20,35],everyth:[11,30,35],exactli:[5,30],exampl:[0,5,8,10,12,15,18,20,21,22,24,26,29,31,34,35,38,39,42],exceed:5,excel:[7,10],except:[8,15,23,24,25,30,38],exchang:35,exec_modul:42,execstart:[37,40],execut:[15,18,32],exercis:21,exercit:30,exist:[8,9,10,15,17,21,23,24,27],exit:[11,21],expand:30,expect:[18,22,24],experi:12,experienc:[17,21],experiment:38,explain:24,explan:3,explanatori:[37,39,40,41],explicit:30,expos:22,express:18,ext:2,extend:[20,24,28,30],extens:[2,30],extern:[5,13,25,26,30,31,35],extra:[2,8],extract:2,extrem:17,eye:[21,30],face:30,fact:19,fail:[21,29],fals:[0,11,15,28,29,30,31,40,42],familiar:[12,27],fanci:24,faq:30,fashion:15,favorit:[24,27],fd00:8,fd42:21,fdroid:3,fe80:8,fea5:21,featur:[13,17,22,24,30,35],fedora31:39,fedora:[2,8,10,11,12,30,39],fedoraproject:39,feedback:[24,30],feel:[28,30],fetch:[19,33],few:[15,24,25],fieldnam:30,figur:[8,10,26],file:[2,3,4,8,9,10,11,12,15,17,18,20,21,22,23,24,27,28,29,32,37,39,40,41,42],file_filt:32,filenam:25,files:25,filesystem:4,fill:30,filter:[0,5,31],filtron:[1,6,7,8,10,12,21,33,38,39],filtron_api:[37,38,39],filtron_listen:[37,38,39],filtron_target:[37,38],find:[1,5,9,18,20,22,24],fine:[7,11],finish:[32,39],firefox:2,firewal:5,first:[8,10,11,15,17,20,21,23,27,29,30,35],fit:[12,22,28],fix:[24,27,29],fixm:8,flask:[28,30],flexibl:[18,30,38],flickr:3,flickr_noapi:3,fmt:39,fnd:18,folder:[8,10,11,12,21,24,25,27,29,30,32,38,39],follow:[4,5,7,8,10,12,13,15,18,24,25,27,29,30,32],followsymlink:8,font:2,fontsrecommend:2,footer:24,force_timeout:[38,39],fork:[7,21,24,38],form:[0,30,35],format:[5,25,29,30,31],forward:[5,10,35],found:[2,17,19,27,28],foundat:[17,18,20,22,23],fr_fr:15,fraction:30,framalibr:3,free:[3,24,28,33],fresh:8,friend:[22,27,35],frinkiac:3,frk:3,frl:3,from:[1,2,5,7,8,9,10,11,12,14,15,17,18,20,21,22,23,24,27,30,32,33,35,37,38,39,40,41,42],front:30,fsd:3,full:[4,15,24,30,37,40],fulli:[8,10,17],fun:19,fund:[18,20,22],further:[27,29,38],furthermor:[25,29,31,35],futur:39,gain:35,gate:27,geektim:3,gen:3,gener:[0,6,8,9,12,15,20,24,26,27,31,35,42],genesi:3,geniu:3,gentlemen:19,gentoo:3,geojson:25,german:0,get:[2,5,6,7,8,10,11,14,21,24,25,27,29,30,31,32,33,37,39,40,42],get_engines_stat:30,get_search_queri:42,gid:12,gigablast:3,gil:12,git:[2,7,8,9,10,11,15,16,21,24,25,27,29,30,37,38,40,41],git_branch:[21,27,38],git_url:[21,27],github:[3,7,9,11,20,21,23,27,29,30,31,37,39,40,41],gitlab:3,gitmoji:24,give:[8,27,29],given:30,glob:12,global:6,global_ip:39,glyph:30,gnu:27,go1:[37,40],go_env:[37,40],goe:27,goi:[0,3],going:[5,18,20,22,30,35],gon:3,good:[7,8,10,21,29,39],googl:[0,3,15,31,37,40],google_imag:3,google_new:3,google_video:3,gopath:[37,40],gos:3,got:21,gov:3,gpa:3,gpm:3,gps:3,grant:[8,12],graphic:[17,18],graphviz:2,grep:39,group:[30,35,37,40],grow:17,grumpi:30,grunt:29,gubergren:30,guest:39,guid:[10,17,27,29,30],guidelin:22,guilabel:30,habr:3,habrahabr:3,hack:[17,18,20,22,23,24],hackabl:26,hackerspac:36,handl:[15,21,30,35,39],handler:8,happi:[17,18,20,22,23,24],hard:[17,25,30],harden:[37,40],has:[13,15,18,20,22,24,25,29,30,35],hash:14,hat:30,have:[2,7,8,9,10,11,15,17,18,21,23,24,25,27,30,35,38,39],hbar:30,head:11,header:[5,8,10,25,30],headers_modul:8,heard:30,hebrew:15,height:30,help:[9,14,24,27,29,37,38,39,40,41],helper:30,her:22,here:[2,8,10,12,15,20,21,24,28,30,38],herein:1,heterogen:21,hex:11,hidden:[0,22,35],hierarchi:4,him:22,hint:[1,30,38],histor:[8,23],hit:11,home:[11,21,32,37,38,40,41],hoogl:3,host:[2,5,8,10,11,15,17,21,22,24,27,32,33,39],hostnam:[10,39],hotkei:[0,14],hous:25,house_numb:25,how:[1,2,6,7,8,10,12,15,19,21,26,27,30,33,34,37,40],howev:[20,25,31],html:[0,2,8,12,24,25,27,30,40],html_math_render:2,http:[0,2,4,5,6,7,9,11,12,13,14,15,20,21,24,25,27,29,30,32,33,37,38,39,40,41],http_connect:[5,10],http_host:[5,10],httpd:8,https_rewrit:31,huge:30,idea:29,identifi:[38,39],ifmodul:8,ignor:15,illustr:7,imag:[0,2,3,6,13,15,21,26,27,31,36,39,40,41,42],image_proxi:[8,10,15,31,40],imagemagick:[2,30],imagin:18,img_src:25,imgmath:2,imgmath_font_s:2,imgmath_image_format:2,imgmath_latex:2,immedi:14,implement:[10,12,17,23,24,25,28,39],impli:22,importlib:42,improv:27,in_contain:39,ina:3,inbound:15,includ:[8,10,18,21,22,27,30,39],inclus:36,incom:8,increment:27,indent:[30,39,42],index:[4,8,18],infinit:14,infinite_scrol:[14,31],info:[15,21,27,39,40],info_msg:39,infobox:42,inform:[13,14,15,22,24,25,39],infrastructur:[1,12],infratructur:5,inherit:30,ini:[8,9,10,12,21],init:[12,20,21,26,39],initi:[12,21,32,39,42],initialize_engin:42,inlin:26,input:[0,22,30],insecur:11,insert:[30,32],insid:[9,11,18,21,25,39],insight:35,inspect:[21,37,38,40,41],instal:[1,2,5,6,12,13,21,23,24,27,29,30,32,33,38],instanc:[0,1,6,7,8,10,12,15,17,18,20,21,22,27,31,32,33,34,37,38,39,40,41],instance_nam:[0,9,11],instead:[12,17,22,23,29,30,42],instruct:30,insuffici:20,intefac:4,integr:33,intend:9,intent:24,interact:[11,37,38,40,41],interfac:[8,15,18,19,33],interfer:24,intermedi:27,intern:29,internet:[7,18,20,33],interpret:[12,30],interpretor:12,intersphinx_map:30,interv:5,intranet:[7,8,10],intro:[8,10],introduc:[17,18,19,20,22,30,33],introduct:[27,29],intuit:30,inv:30,inventori:30,investig:23,invidi:3,invidunt:30,ipsum:30,ipv4:[10,39],ipv6:[10,21,39],isn:[8,10],iso:[15,25],isol:[5,21],issu:[12,20,22,23],ital:30,italiano:15,item:30,its:[2,7,17,18,24,27,30,31,35,39],itself:[4,12,24],japanes:15,javascript:[14,26],jinja:30,jinja_context:30,job:38,join:30,js_depend:28,json:[5,31,37,42],json_engin:3,json_seri:42,juli:39,jump:[11,21,27],june:39,just:[0,5,10,21,27,30,35,39],justo:30,kasd:30,kbd:30,keep:[8,10,15,21,27],keep_onli:15,kei:[9,13,14,15,18,20,25,32,40,41,42],kickass:3,kind:[8,30,35],kiss_:30,know:[8,12,20,21,22,30,35,39],knowledg:30,known:27,kvch:[17,18,20,22,23],l19:21,label:30,labor:30,labori:30,lack:24,lang:[0,12,31,32,42],languag:[0,3,5,12,15,25,27,30,31,32,36],language_support:[25,30],laptop:35,larg:[12,37,39,40,41],last:30,lat:25,later:[38,39],latest:[12,32],latex:2,latexextra:2,latexmk:2,latitud:25,latter:[27,30],launch:39,layout:6,lazi:12,lc_all:12,lc_messag:32,leak:18,learn:30,least:[21,23],leav:15,leech:25,leecher:25,left:[11,30],legaci:31,length:24,less:[8,10,12,17,29,30,35],let:[18,21,30,35,38],level:[24,30],lib:[8,12,37,40],libapache2:8,libffi:[2,11],librari:3,librsvg2:2,librsvg:2,libssl:[2,11],libxml2:[2,11],libxslt:[2,11],licens:[38,39],light:10,like:[0,2,11,14,15,22,24,25,27,28,30,38],like_hotkei:31,limit:[5,8,18,19,20,25,30,33],line:[8,10,19,20,24,27,39,42],link:[12,14,15,21,26],lint:[6,27],linux:[0,2,3,8,10,11,12,15,19,22,30,33,37,38,39,40],linuxcontain:39,linuxcontainers_org_nam:39,linuxdoc:30,list:[8,18,20,22,25,26,27,28,31,36,42],listen:[5,8,10,37,38,39,40],liter:26,literalinclud:30,live:[21,26,30,39],load:[12,14,15,39,42],loader:42,loadmodul:8,lobst:3,local:[0,4,5,9,10,11,12,15,18,21,22,23,25,27,28,29,32,37,38,39,40,41],local_imag:39,localhost:[8,9,10],locat:[4,5,6,8,10,11,12,30],log:[5,6,12,15,21,29,35,37,38,40,41],logger:12,logic:24,logicodev:31,login:11,lon:25,longer:27,longitud:25,look:[8,11,27],lorem:30,loremlorem:30,lot:21,low:[8,10],lsb:12,lxc:[21,33,38],lxc_host_prefix:39,lxc_repo_root:39,lxc_set_suite_env:39,lxc_suit:[21,39],lxc_suite_info:39,lxc_suite_instal:39,lxc_suite_install_info:39,lxc_suite_nam:39,lxd:[21,39],lxml:[2,11],machin:18,made:[15,21],magna:30,magnetlink:25,magyar:15,mai:[15,21,30,37,40],main:[8,14,27,32,38],mainlin:10,maintain:[1,12,21,30,38],mainten:[5,7,21,37,40,41],make:[2,9,17,21,22,23,24,26,30,35,39],makefil:[21,24,26,33,38,39],man:30,manag:[5,16,17,27,29,37,40,41],mandatori:7,mani:5,manipul:[17,39],manual:[15,27,30],manuali:30,map:[0,3,30,42],mark:[11,30],markup:26,mass:24,master:[12,16,24,27,30,38],math:[2,26],mathemat:30,mathrm:30,matter:[21,25,35],max:[5,25],max_redirect:25,max_request_timeout:15,maxim:24,maximum:[15,24,25],mayb:18,mean:[12,21,24,30,35],meaning:30,meant:30,media:[0,3,25,42],mediawiki:3,memori:15,mention:23,menuselect:30,merg:[15,21],messag:[5,15,24,25,27,29,30,32],messagespo:32,meta:30,metadata:30,metag:3,metasearch:[11,25,33,37,40],method:[0,7,12,25,30],microsoft:3,microsoft_academ:3,middlewar:5,might:[12,21,22,24,27,30,31,35,38,39],migrat:23,mileston:18,min:25,minim:30,mirror:3,misbehav:24,miss:[5,30],mix:21,mixcloud:3,mjk:3,mkdir:[8,10,11,12,37,40],mod:[8,30],mod_autoindex:8,mod_head:8,mod_proxi:8,mod_proxy_http:8,mod_proxy_uwsgi:8,mod_uwsgi:8,mod_wsgi:8,mode:[12,15,30,38,39],modern:8,modifi:[9,12,15,30,36],modul:[8,12,28,30,42],module_from_spec:42,mojeek:3,monet:35,monitor:[12,21],mono:2,month:[0,31,42],more:[5,13,15,17,20,24,27,30,31,33,35,38,39],morecol:30,morerow:30,morti:[1,7,8,10,13,21,33,38,39],morty_kei:9,morty_listen:[38,39,40],morty_url:9,most:[2,8,15,23,35,37,38,40,41],mostli:[12,30],motiv:19,mount:4,mount_prefix:4,move:[20,24],movi:3,much:[24,30],multi:[37,40],multibl:25,multipl:[14,15,30,35],multithread:12,multius:11,music:[3,42],must:[4,10,15,18,23,24,25,29,30],my_arg:30,my_funct:30,my_other_arg:30,mydomain:38,mymemori:3,myproject:29,name:[0,3,5,8,10,11,14,15,18,21,22,25,27,28,32,39],name_of_python_fil:28,namespac:42,nativ:12,naver:3,navig:14,necessari:[11,22],nederland:15,need:[5,7,8,9,10,11,12,15,20,21,24,27,30,35,37,38,39,40,41],neither:33,net:33,network:[15,18,37,40],never:[21,27],nevertheless:[8,10],newcom:17,next:[8,10,14,19,30],nginx:[1,5,6,7,15,21,33,37,39,40,41],nightmar:30,nil:39,nisi:30,nlnet:[17,18,20,22,23],no_parsed_url:42,noconfirm:[2,11],node:[27,29],nodej:29,non:20,none:[8,25,27,30,31,42],nonewprivileg:[37,40],nonumi:30,nor:33,normal:[8,21,25,30,38],nostrud:30,note:[8,10,24,31],notic:21,now:[8,10,11,18,21,22,23,28],npm:[3,27,29],number:[5,15,25,30,31,39],number_of_result:25,numer:30,numref:30,nvr:3,nyaa:3,oad:3,oap:3,obj:[30,42],object:[25,28,30,42],obtain:15,off:[8,10,24,37,39,40,41],offer:[4,12],offlin:[3,19,22,25,30,33],often:[25,30,38],old:[8,9,21],on_result:28,onc:[21,39,42],one:[8,12,15,21,22,24,27,30,33,35,37,38,39,40,41],ones:[25,37,40],ongo:27,onli:[2,7,8,13,15,18,22,24,28,30,31,38,39,42],onlin:[20,30,33],open:[8,11,14,21,23,24,27,30,31,35,38,39],openairedataset:3,openairepubl:3,openrepo:3,openssl:11,openstreetmap:[0,3],oper:[23,30,35],option:[8,9,11,12,13,15,17,18,21,22,24,25,27,28,29,30,31,35,37,38,40,41,42],order:[8,24,29,30],org:[2,4,5,8,10,12,15,25,30,39],organ:33,orient:8,origin:[6,16,21,30],oscar:[0,15,31],osm:[0,3,25],other:[15,18,24,25,30,35],otherwis:25,our:[1,5,7,17,21,24,27,30,39],out:[8,10,20,21,24,27,30,37,39,40],outgo:15,output:[2,18,22,30,31,37,39,40,41],outsid:21,outstand:30,over:[18,21,30,33,39],overlin:30,overlook:21,overrid:15,overview:[5,15,26,27,31,33,38],overwritten:25,own:[7,18,21,27,33,35],owner:27,packag:[2,5,6,8,10,12,21,27,29,30,37,39,40,41],pacman:[2,8,10,11,30],page:[3,8,10,14,15,17,22,24,25,26,30,31,35,36,42],pageno:[25,31,42],pagenumb:25,pair:20,palletsproject:30,param:[5,20,25,30],paramet:[15,25,26],paramt:25,parent:30,pars:[31,42],parse_argu:42,parse_lin:20,parse_regex:18,part:[4,15,17,30,39],parti:35,partial:30,partli:25,pass:[8,10,20,24,31],password:15,past:0,patch:[24,30],path:[5,8,15,18,21,30,37,39,40],paywal:14,pdb:3,pdbe:3,pdf:2,peertub:3,peopl:[17,18,35],pep8:[24,27,29],pep8_check:27,pep:30,per:[12,24,25,30],perfect:21,perform:[12,14,20,25],phase:29,photon:3,phrase:30,piec:30,pip3:23,pip:[2,11,32],pipe:20,piratebai:3,pix:31,place:[7,10,12,24,25,30,32,35],plai:3,plaintext:30,pleas:[23,24,29,30,31],plenti:24,plu:[8,10],plugin:[0,2,6,11,12,24,26,31,33],pocket:[8,10],point:[9,10,11,12,21,26,27,30,35],pointer:30,pointhi:31,polygon:30,pool_connect:15,pool_maxs:15,popen:20,popular:30,port:[5,9,10,11,15,24,25,39],possibl:[9,13,14,15,18,20,21,22,30,31],post:[0,21,24,31],post_search:28,postcod:25,pot:32,pov:30,power:[18,30],practic:24,pre_search:28,prefer:[7,17,22,30,31,35,36],prefix:36,preinstal:[5,21],prepar:[19,33,39],prerequisit:[21,30],present:[20,22],preserv:[24,30],press:[14,27],pretti:15,preview:25,previou:38,previous:18,primari:39,primary_ip:[38,39],prime:26,primer:[26,33],principl:30,privaci:[7,8,10,11,12,21,26,30,34,37,40],privat:[18,19,20,33,34],privatedevic:[37,40],privatetmp:[37,40],pro:30,probabl:15,problem:5,procedur:[7,39],process:[2,5,12,20,21,22,27],processor:30,produc:30,product:[15,19,38],profil:[11,27,33,35,37,40],prog_arg:42,program:27,progress:[19,37,40],project:[12,21,26,27,30],promot:33,prompt:[21,38],proper:[35,37],properli:23,propos:20,protect:[1,6,8,10,21,24,33,34,37],protectsystem:[37,40],protocol:[9,10,12,15,21],provid:[18,22,24,25,30],proxi:[1,6,7,10,15,21,25,31,33,35,37,38,39,40,41],proxif:[8,10],proxifi:13,proxy1:15,proxy2:15,proxy3:15,proxy4:15,proxy_add_x_forwarded_for:[5,10],proxy_buff:10,proxy_http:8,proxy_http_modul:8,proxy_modul:8,proxy_pass:[5,10],proxy_set_head:[5,10],proxy_uwsgi_modul:8,proxypass:[8,37,40],proxypreservehost:8,psi:30,ptb:3,ptipython:42,pub:3,public_host:37,public_url:[37,38,39,41],public_url_morti:[39,40],public_url_path_morti:38,publicli:20,publish:25,publishedd:25,pubm:3,pull:[9,16,20,24,30,32],purpos:[15,25,29],push:[24,27],put:18,pwd:[9,21],py3:27,pybabel:32,pybuild:26,pyclean:27,pyenv:[11,12,21,27,41],pygment:30,pylint:26,pylintrc:27,pypi:[27,30],python2:[12,23],python3:[2,11,12,23,29,42],python:[2,11,12,15,19,21,26,28,29,30,33,41,42],pythonhom:12,pythonpath:[12,21],qout:39,quadratur:33,qualiti:[2,27,30],queri:[14,18,20,22,25,31,35,36,42],query_enum:18,query_typ:18,question:[30,35],qui:30,quickstart:[24,26,27,33],quiet:27,quit:[8,21,24,27],qwant:3,qwer:36,qwi:3,qwn:3,qws:3,rain:42,rais:[20,25,42],raise_for_statu:25,rand:11,random:[25,35],rang:[3,12,25,31],rangl:30,rate:5,rather:22,raw:30,rbg:3,reach:[4,30],reactiv:15,read:[20,21,24,27,29,38],readability_:30,reader:[21,30],readi:21,readlin:20,readm:[5,8,12,13],readthedoc:12,real:[5,10],realli:7,reason:[8,12,17,23,27,30],rebuild:[24,27],rebum:30,recol:3,recommend:[2,5,7,12,24,25,27,30,38],reconsid:24,record:[25,30],reddit:3,redefin:25,redirect:[14,25],reduc:24,ref:[37,40],refer:[1,4,30,35],referenc:30,refnam:30,regardless:35,regist:26,regular:[18,20],reinstal:[37,41],rel:[10,21,30,39],releas:[23,27,39],releng:39,reli:15,reload:12,remark:21,rememb:[12,21,24],remot:39,remote_addr:[5,10],remov:[12,14,15,21,35,37,38,39,40,41,42],renam:[9,31],render:2,replac:[8,10,11,17,21,28],repo:24,report:21,reposetori:21,repositori:[11,15,17,21,39],request:[6,8,10,15,20,22,24,26,28,30,35],request_timeout:15,request_uri:8,requesthead:8,requir:[2,8,14,23,24,25,26,27,28,29,30,31,42],requisit:27,res_dict:42,reset:35,resourc:10,respect:[11,24,35,37,40],respons:[15,25],rest:[22,26,33],restart:[6,9,10,11,12,13,16,21,37,40],restrict:22,restructuredtext:30,result:[1,2,6,7,8,10,14,15,19,20,26,30,31,33,35,40,41,42],result_proxi:[8,9,10,13,40],result_separ:18,results_numb:42,results_on_new_tab:31,retriev:[18,32],return42:30,return_cod:20,rever:8,revers:[1,6,7,10,37,38,39,40],rewrit:[0,14],rfc:30,rhel:[2,8,10,11,12,30],rid:[27,39],right:[12,22,28,30,33],rightmost:30,rigth:30,road:25,robin:15,roboag:5,robot:[27,29],robotframework:23,role:26,rolenam:30,roll:39,romanian:15,root:[8,10,21,27,39],rotat:30,round:[15,24],rout:[6,8,10,30],row:30,rowspan:30,rspan:30,rss:[5,31],rst:[24,30],rst_titl:39,rubygem:3,rule:[5,24,37],run:[2,5,7,8,9,10,12,13,15,19,20,21,22,24,25,26,28,30,32,33,35,37,38,40,41,42],runner:41,runtimeerror:20,russian:15,sadipsc:30,safe:[3,31],safe_search:0,safesearch:[30,31,42],same:[5,11,15,18,21,25,30],sampl:[6,30,37],san:2,sanctu:30,sanit:21,sas:42,satisfi:29,save:8,sc2031:39,sc2034:[38,39],scalabl:30,scale:[21,30,39],scaleabl:30,scan:12,scc:3,scd:3,scenario:4,schedul:[20,23],scheme:[5,10],scholar:3,schroeding:30,scienc:[3,42],scope:24,scratch:2,script:[1,5,6,8,10,11,21,29,37,38,39,40,41,42],script_nam:10,scroll:14,sdist:27,sea:30,search:[3,4,5,6,9,14,15,18,20,21,22,24,25,26,30,33,34,35,42],search_dir:4,search_on_category_select:[14,31],search_path:25,search_q:42,search_queri:42,search_str:25,searchcod:3,searchcode_cod:3,searchcode_doc:3,searchqueri:42,searx:[0,1,2,5,6,7,8,12,13,15,16,18,19,20,24,25,27,28,29,30,31,32,34,36,37,38,40,42],searx_debug:42,searx_instance_nam:41,searx_internal_http:41,searx_internal_url:38,searx_settings_path:[11,12,15,21],searx_url:[27,38],searx_userag:15,sec:5,second:[11,15,30],secret:[15,22],secret_kei:15,section:[10,15,21,27,28,30],secur:[18,33],sed:[11,30],see:[2,5,8,9,10,12,13,15,20,21,22,24,29,30,31,33,36,37,39],seed:25,seeder:25,seedpeer:3,select:[14,27,30,35,36,39],selenium:29,self:[14,17,33,37,39,40,41],self_inform:31,semant:[3,24],send:[2,5,15,35],sens:30,sent:35,sep:3,separ:[18,22,24,30,31,37,40],sepiasearch:3,seri:27,serial:42,serializ:42,serif:2,seriou:21,serv:[24,35,39],server:[5,6,7,9,12,15,21,29,39,40],server_nam:10,servic:[5,6,7,10,12,13,21,30,31,33,35,37,38,39,40,41],service_home_bas:38,service_us:[37,38,40,41],service_ussr:38,session:[11,29],set:[2,4,6,8,9,10,11,12,13,17,18,20,21,24,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42],setenvif:8,sethandl:8,setup:[1,2,5,6,7,8,10,11,12,21,26,30,33,37,40],setuptool:11,sever:21,seznam:3,share:[8,12,21,22,39],shell:[6,11,19,21,33,37,38,39,40,41],shellcheck:[2,11,30,38,39],ship:10,shortcut:[0,3,15,18,22,25,30],should:[7,8,10,15,17,21,23,24,30,32],show:[1,2,3,8,10,18,21,30,37,38,39,40],shown:[3,7,8,11,21,30],side:[7,30],sign:30,signal:21,signifi:30,similar:[12,15,30],simpl:[21,27,31,37,40],simplest:30,simpli:[5,21,24,27,31,37,38,40,41],simplifi:[5,27,37,40,41],simultan:15,sinc:[10,17,27,30],singl:[8,10,12,35,39],sit:30,site:[0,5,6,8,15,25,30,31,37,40,41],size:25,skeleton:20,skill:26,skip:29,slow:15,small:[25,41],smylink:21,snap:[21,39],snapcraft:39,snippet:13,social:[0,3,42],socket:[8,9,10,12],socks5:[15,25],socks5h:15,soft:[25,26],soft_max_redirect:25,softwar:[3,21,37,40],sold:35,solut:[18,22],solv:[5,22],some:[1,7,8,12,15,21,22,24,27,30,37,38,39,40,41],someon:35,someth:[18,24,27],sometim:17,sort_kei:42,soundcloud:3,sourc:[11,21,23,26,27,30,32,35,37,39,40,42],source_fil:32,source_ip:15,source_lang:32,space:15,span:30,spars:30,spdx:[38,39],speak:12,spec:42,spec_from_file_loc:42,special:[6,7,12,18,25],specif:[12,15,18,25,39],specifi:[9,12,15,25,31],speu:3,sphinx:24,sphinxopt:24,splinter:23,split:24,spoilt:7,sponsor:[17,18,20,22,23],src:[5,10,11,12,21,41],srv:8,ssl:[25,33],stabl:15,stack:[21,29,39],stackoverflow:3,stage:30,standalon:17,standalone_searx:[33,38],standard:[8,24,25,28,39],start:[1,5,8,10,11,12,19,24,25,27,33,37,39,40,41],startpag:[3,31],stash:[16,27],stat:30,statist:30,statu:[37,38,40,41],stdout:[20,42],step:[1,6,7,19,21,24,33,41],stet:30,stone:22,stop:[5,8,10,11,12,21,25,27,37,39,40,41],storag:39,store:[25,35],str:42,strang:12,street:25,strict:22,string:[14,22,25,31,32],stroke:30,strong:30,structur:[24,26],stub:30,stuff:30,style:[26,31],sub:[24,30],subdir:10,subdirectori:10,subject:30,submit:[18,24],subnet:8,subprocess:20,subrul:5,subscript:30,subsect:30,subshel:39,substitut:26,sudo:[2,7,8,10,11,12,16,21,29,30,37,38,39,40,41],suffix:[9,15],suggest:[1,28,42],suit:[19,38],suitabl:30,sup:30,superscript:30,supervisor:17,support:[2,3,6,10,11,12,18,19,22,24,25,30,31,33,35,37,39,40],sure:[9,11,21,23],surround:30,suspici:5,svg:2,svg_imag:30,symbol:[12,21],symlink:10,syntax:[31,33,34],sys:42,syslog:[37,40],system:[11,12,21,22,23,24,27,30,37,38,40],systemctl:[8,10,12,16,21],systemd:[12,37,40,41],systemexit:42,szn:3,tab:[26,31,39],tabl:[3,20,26],tailor:35,take:[12,15,17,24,32,39],taken:[30,38],takimata:30,tar:[27,37,40],target:[21,24,26,30,33,37,39,40],task:[7,11,21,30,39],tcp:9,tcp_nodelai:11,tell:[18,25],templat:[12,20,21,25,26],tempor:30,term:[8,18,30],termin:[11,21,42],test:[2,8,10,11,21,23,24,26,39,41],texliv:2,text:[0,4,25,30],textstyl:30,tfrac:30,than:[15,30,33],thei:[12,15,21,22,30,35],them:[12,15,21,27,28,30,38],theme:[15,26,27,31],themes_path:15,themselv:22,therefor:[7,30],theses:21,thi:[4,5,7,8,9,10,11,12,13,15,17,18,20,21,22,23,25,27,28,29,30,31,35,37,38,39,40,41,42],thing:30,think:[24,27,30],third:[30,35],those:[18,20,21,32,35],though:4,thread:12,three:[24,28,30,35],through:[6,8,10,15,22,30,31,35],thu:[18,20,23,31,35],thumbnail:25,thumbnail_src:25,time:[5,15,21,23,24,25,30,31,35,39,42],time_rang:[0,31],time_range_support:[25,30],timeout:[3,15,25,30,38,40],timerang:42,timestamp:12,tip:[26,30],titl:[18,25],to_dict:42,todai:20,togeth:20,token:[15,18,20,22],tokyotoshokan:3,too:[5,15,30,35],tool:[1,2,4,7,11,17,24,30,32,33,39],top:30,tor:[3,33,35],torrentfil:25,torrentz:3,touch:[8,10,12,15,21],tpb:3,trace:29,track:[33,35],tracker:14,tracker_url_remov:31,trademark:30,traffic:[8,10],train:30,transform:30,transifex:[24,26],transifexrc:32,translat:[3,15,26,33],transpar:[21,39],travi:[23,29],tree:[11,21,27],troubleshoot:38,trust:[22,33,35],ttf:2,tupl:28,turn:[24,29],twice:11,twine:27,twitter:3,two:[12,15,24,30,31],txt:[23,27,30],type:[0,18,24,25,27,31,32,35,37,39,40],typeerror:42,typic:[1,30],typo:30,ubu1604:39,ubu1804:39,ubu1910:39,ubu2004:39,ubuntu:[2,8,10,11,12,16,30,39],uds:8,uesr:18,ugli:[17,30],uid:[12,21],ullamco:30,ultrasecretkei:[11,15],unam:[11,39],uncommon:24,under:[21,22,25],understand:[17,30],unfortun:24,unicod:26,uninstal:[27,38],unit:[12,24,27,37,40,41],unit_test:[27,29],univers:11,unix:[8,10,12],unknown:[35,37,40],unless:22,unlik:35,unspecifi:25,unsplash:3,untouch:27,unwant:7,updat:[6,9,11,15,24,26,33,37,40,41],update_dev_packag:29,update_packag:16,upload:27,upstream:12,url:[0,8,9,10,13,14,15,21,24,25,27,35,38,39,40,41,42],urlencod:25,usag:[7,8,10,21,27,30,37,39,40,41,42],use:[2,5,7,8,10,12,13,15,20,21,22,24,25,27,29,30,33,34,37,38,39,40,41,42],use_default_set:6,used:[8,10,15,18,23,24,25,30,33,35,38],useful:[15,38],user:[5,6,8,10,12,14,15,18,21,22,24,25,30,33,35,38,41],useradd:[11,37,40],userag:5,useragent_suffix:15,uses:[12,15,25,30,35],using:[4,5,8,9,10,12,15,19,21,24,27,29,30,32,33],usr:[5,8,10,11,12,21,37,38,40,41],usual:[19,23,35],utf:[12,30,38,39],util:[1,2,5,7,8,10,13,21,27,33],uvys6brhkhudff5cqbjonsdsrn8h0scbzinsrdgnvdpz7iezhvevart3yvghokha:15,uwsgi:[1,2,6,9,10,11,16,21,33,41],uwsgi_param:10,uwsgi_pass:10,uwsgisocket:8,valid:[25,29,31],valu:[0,9,10,18,20,25,30,31,38],variabl:[9,15,25,27,30,40],variant:30,variou:[24,28],vassal:12,vector:30,vendor:24,veniam:30,venv3:23,venv:[2,11,29],verbos:[11,27,38],veri:38,verifi:25,vero:30,version:[11,14,23,30,37,40],via:[8,10,12,17,36],video:[3,42],view:[26,35],viewbox:30,vim:[0,14,31],vim_hotkei:14,vimeo:3,virtual:[8,10],virtualenv:[2,11,12,21,23,27,29,41],visist:30,visit:[11,30,35],voat:3,volum:9,voluptua:30,vpn:35,vulner:35,wai:[12,15,18,20,24,25,30,35],wait:[15,20],want:[15,22,23,24,27,30,31,35,38,39],wantedbi:[37,40],warn:[2,8,10,30,39],watch:24,web:[4,5,11,15,17,18,21,25,27,37,39,41],webapp:[11,12,15,23,27,30],webcrawl:5,webserv:10,websit:0,webui:4,week:42,weight:[15,30],weigth:[3,15],weird:24,welcom:[8,10],well:30,were:[20,22,23],werkzeug:27,wget:[37,40],what:[12,21,30,39],whatev:[27,39],wheel:11,when:[2,8,14,15,18,23,28,29,30,35,42],where:[4,5,15,18,21,30],whether:[29,35],which:[1,5,8,10,12,15,17,18,20,21,22,24,25,27,30,31,33,35,37,40],whl:27,who:[12,17,18,20,35],whole:[8,28],why:[30,33,34],wide:24,widen:30,width:30,wiki:[0,3,10,15,20,22,30,39],wikibook:3,wikidata:3,wikinew:3,wikipedia:[3,15,31,36],wikiquot:3,wikisourc:3,wikivers:3,wikivoyag:3,wiktionari:3,wish:15,within:[27,30],without:[2,9,15,18,25,33,35,42],wolframalpha:3,wolframalpha_noapi:3,won:[15,23],word:[28,30,31],work:[10,11,15,18,19,24,25,27,29,35,41],worker:12,working_dir:18,workingdirectori:[37,40],world:[24,30,35],worri:23,worth:[12,35],would:[21,22],wrap:[10,19],write:42,written:21,wrong:27,wsgi:[10,12],www1x:3,www:[2,8,30,32,39],wysiwyg:24,xapian:4,xdg:[11,27],xetex:2,xml:30,xmln:30,xpath:3,xxxx:30,xzf:[37,40],yahoo:3,yahoo_new:3,yandex:3,year:[23,31,42],yes:[37,40],yet:[24,25,27],ygg:3,yggtorrent:3,yhn:3,yml:[3,6,8,9,10,11,12,13,17,20,21,27,28,29,31,33,40,41],you:[1,2,4,5,7,8,9,10,11,12,15,18,19,20,21,24,27,29,30,31,33,35,36,37,38,39,40,41],your:[2,4,5,7,8,9,10,11,12,13,14,15,17,18,19,23,24,26,27,30,33,37,38,39,40,41],your_morty_proxy_kei:13,yourself:24,youtub:3,youtube_noapi:3,yyyi:30,zero:20,zlib1g:[2,11],zzzz:30},titles:["Administration API","Architecture","Buildhosts","Engines","Recoll","How to protect an instance","Administrator documentation","Installation","Install with apache","Docker installation","Install with nginx","Step by step installation","uwsgi","How to setup result proxy","Plugins builtin","settings.yml","How to update","Searx admin interface","Running shell commands to fetch results","Blog","Preparation for offline engines","Developing in Linux containers [202006]","Limit access to your searx engines","Introducing Python 3 support","How to contribute","Engine overview","Developer documentation","Makefile Targets","Plugins","Development Quickstart","reST primer","Search API","Translation","Welcome to searx","User documentation","Why use a private instance?","Search syntax","utils/filtron.sh","Tooling box utils/*","utils/lxc.sh","utils/morty.sh","utils/searx.sh","utils/standalone_searx.py"],titleterms:{"202006":21,"abstract":21,"default":[3,14,25],"function":21,"public":[8,9,10,35],"return":25,The:[8,10,21,24],about:[30,35],access:22,acknowledg:[17,18,20,22,23],activ:27,admin:17,administr:[0,6],admonit:30,aka:30,alltogeth:12,anchor:30,apach:8,api:[0,31],architectur:1,archlinux:21,argument:25,articl:[2,30],ascii:30,audienc:21,bar:0,basic:30,bibliograph:30,block:30,blog:19,box:[5,38],bug:23,build:[2,9,24,27,29,30],buildhost:[2,39],built:[3,14],builtin:14,bullet:30,check:11,clean:[24,27],code:[24,25,30],command:[9,18,38,39],commit:24,common:38,compil:29,conclus:35,configur:[0,3,4,5,11,14,25],consequ:35,contain:21,content:[2,5,8,9,10,11,12,15,21,24,25,27,30],contribut:24,creat:[11,24,37,40],csv:30,data:0,debian:8,debug:29,definit:30,depend:11,deploi:24,design:24,develop:[20,21,26,29],direct:24,disabl:[8,10],distributor:12,doc:[2,24,27],docker:9,document:[6,24,26,34],doe:35,dot:30,drop:27,emb:0,engin:[3,15,18,20,21,22,25],entri:28,environ:[27,29,30,38],equat:30,exampl:[4,25,28,30,36],ext:30,extern:28,extlink:30,fact:23,featur:33,fetch:18,field:30,figur:30,file:[25,30],filtron:[5,37],first:7,flat:30,foo:30,fork:27,found:23,fulli:21,fun:23,further:[1,3,5,8,10,12,13,14,15,28,30,31,37,39,40,41],gate:30,gener:[3,25,30],gentlemen:21,get:0,github:24,global:15,good:24,graphviz:30,grid:30,hackabl:24,head:30,hello:30,highlight:30,hlist:30,hook:28,horizont:30,how:[5,13,16,23,24,29,35],http:[8,10],hyperlink:30,imag:[9,25,30],info:4,init:32,inlin:30,instal:[7,8,9,10,11,17,37,39,40,41],instanc:[5,9,35],interfac:17,internet:[8,10],intersphinx:30,introduc:23,javascript:29,kernel:30,kiss:30,latex:30,layout:8,limit:22,line:[9,18,30],link:30,lint:2,linux:21,list:30,liter:30,live:[24,27],locat:15,log:[8,10],lxc:39,make:[25,27,29],makefil:[27,29],map:25,markup:30,math:30,matter:30,morti:40,motiv:21,name:30,need:2,nest:30,next:[18,20,22],nginx:10,note:30,offlin:20,ordinari:30,origin:12,overrid:25,overview:[25,37,39,40,41],packag:11,page:27,paragraph:30,paramet:31,pars:25,pass:25,plugin:[14,28],point:28,post:28,pre:28,prepar:20,prime:24,primer:30,privaci:[24,35],privat:[22,35],process:30,product:21,progress:20,project:32,protect:[5,35],proxi:[8,13],pybuild:27,pyenv:29,pylint:27,python:[23,27],quickstart:29,quot:30,read:[1,3,5,8,10,12,13,14,15,28,30,31,37,39,40,41],readabl:30,recol:4,ref:30,regist:28,render:30,request:[5,25],requir:32,respons:0,rest:[24,30],restart:8,result:[13,18,25,28],revers:8,role:30,rout:5,run:[18,23,27,29,39],sampl:[0,5],script:[2,7],search:[0,28,31,36],searx:[9,10,11,17,21,22,23,33,35,39,41],see:35,server:[8,10],servic:8,set:[3,15,25],setup:[13,27,29,38,39],shell:[2,18],sidebar:30,simpl:30,site:10,skill:30,smart:30,soft:30,some:2,sourc:[24,29],space:30,special:3,specif:30,sphinx:[2,30],standalone_searx:42,start:21,step:[11,18,20,22],structur:30,style:29,substitut:30,suit:[21,39],support:[8,23],svg:30,syntax:[30,36],tab:30,tabl:30,target:[27,29],templat:30,test:[27,29],theme:29,thi:2,through:5,time:[3,14],tip:29,titl:30,tool:[5,38],torrent:25,transifex:32,translat:[24,32],truth:30,unicod:30,unit:29,updat:[7,16,32],upgrad:23,upstream:27,url:30,use:35,use_default_set:15,user:[11,34,37,40],using:[23,35],usual:21,util:[37,38,39,40,41,42],uwsgi:[8,12],video:25,view:30,welcom:33,what:35,why:35,work:[2,21],wrap:21,yml:[15,25],you:23,your:[21,22,28,29]}}) \ No newline at end of file +Search.setIndex({docnames:["admin/api","admin/architecture","admin/buildhosts","admin/engines","admin/engines/recoll","admin/filtron","admin/index","admin/installation","admin/installation-apache","admin/installation-docker","admin/installation-nginx","admin/installation-searx","admin/installation-uwsgi","admin/morty","admin/plugins","admin/settings","admin/update-searx","blog/admin","blog/command-line-engines","blog/index","blog/intro-offline","blog/lxcdev-202006","blog/private-engines","blog/python3","dev/contribution_guide","dev/engine_overview","dev/index","dev/makefile","dev/plugins","dev/quickstart","dev/reST","dev/search_api","dev/translation","index","user/index","user/own-instance","user/search_syntax","utils/filtron.sh","utils/index","utils/lxc.sh","utils/morty.sh","utils/searx.sh","utils/standalone_searx.py"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,sphinx:56},filenames:["admin/api.rst","admin/architecture.rst","admin/buildhosts.rst","admin/engines.rst","admin/engines/recoll.rst","admin/filtron.rst","admin/index.rst","admin/installation.rst","admin/installation-apache.rst","admin/installation-docker.rst","admin/installation-nginx.rst","admin/installation-searx.rst","admin/installation-uwsgi.rst","admin/morty.rst","admin/plugins.rst","admin/settings.rst","admin/update-searx.rst","blog/admin.rst","blog/command-line-engines.rst","blog/index.rst","blog/intro-offline.rst","blog/lxcdev-202006.rst","blog/private-engines.rst","blog/python3.rst","dev/contribution_guide.rst","dev/engine_overview.rst","dev/index.rst","dev/makefile.rst","dev/plugins.rst","dev/quickstart.rst","dev/reST.rst","dev/search_api.rst","dev/translation.rst","index.rst","user/index.rst","user/own-instance.rst","user/search_syntax.rst","utils/filtron.sh.rst","utils/index.rst","utils/lxc.sh.rst","utils/morty.sh.rst","utils/searx.sh.rst","utils/standalone_searx.py.rst"],objects:{"":{standalone_searx:[42,0,0,"-"]},standalone_searx:{get_search_query:[42,1,1,""],json_serial:[42,1,1,""],no_parsed_url:[42,1,1,""],parse_argument:[42,1,1,""],to_dict:[42,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:function"},terms:{"000":8,"0pointer":12,"0xa9":30,"100":[3,11,15],"1000":11,"1080":15,"115":23,"120":[11,24],"127":[5,8,10,11,12,13,15,21,27,37,38,40,41],"1337x":[3,11],"135":30,"140":39,"147":39,"156":21,"15px":30,"168":8,"1700":20,"174":21,"1756":[27,30],"180":30,"1803":21,"1823":22,"184":21,"192":8,"200":[11,21],"2000":30,"200331":39,"2017":[17,23],"2019":20,"2020":[18,22,39],"202006":[19,33],"2021":39,"2023":39,"2024":39,"2030":39,"2122":30,"2128":18,"216":21,"2291":11,"246":39,"296":39,"300":25,"3000":[8,10,11,13,21,38,39,40],"370":30,"3eff":21,"400":30,"4004":[5,8,10,21,37,38,39],"4005":[37,38,39],"40px":30,"429":21,"500":30,"50593":24,"525":30,"573b":21,"585":30,"666":12,"700":30,"70px":30,"755":15,"8000":24,"8080":[9,11,15,21,39],"8090":11,"820000000":42,"822":30,"833067":12,"8888":[5,8,10,11,12,15,21,27,37,38,41],"8983":11,"9200":11,"9b65":21,"\u010de\u0161tina":11,"\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac":11,"\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438":11,"\u043c\u043e\u0432\u0430":11,"\u0440\u0443\u0441\u0441\u043a\u0438\u0439":11,"\u0441\u0440\u043f\u0441\u043a\u0438":11,"\u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430":11,"\u05e2\u05d1\u05e8\u05d9\u05ea":11,"\u0627\u0644\u0639":11,"\u0628":11,"\u0629":11,"\u0631":11,"\u0641\u0627\u0631\u0633\u0649":11,"\u064a":11,"\u0ba4\u0bae":11,"\u0bb4":11,"\u0c17":11,"\u0c24":11,"\u0c32":11,"\u0f51":11,"\u0f56":11,"\u0f66":11,"\u4e2d\u6587":11,"\u570b\u8a9e":11,"\u65e5\u672c\u8a9e":[11,15],"abstract":[11,19],"boolean":[25,30],"break":[24,30],"byte":25,"case":[8,10,15,21,22,29,35,37,40,41],"catal\u00e0":11,"char":[11,18],"class":[8,11],"default":[5,8,9,10,11,12,13,15,18,23,24,27,28,30,31,33,35,36,37,38,39,40,41,42],"enum":18,"espa\u00f1ol":[11,15],"export":[4,9,10,11,21,27,37,39,40],"f\u0101rs\u012b":11,"fran\u00e7ai":[11,15],"function":[20,25,28,30,39,42],"import":[10,20,30,42],"int":[5,25,30],"lietuvi\u0173":11,"long":35,"new":[3,8,9,10,11,12,17,18,20,22,24,27,28,29,31,32,40,42],"null":[8,10,24,42],"portugu\u00ea":11,"public":[1,6,7,11,14,18,30,38,39],"return":[14,15,18,20,26,28,30,35,42],"rom\u00e2n\u0103":11,"schr\u00f6dinger":30,"short":29,"sloven\u010dina":11,"static":[2,5,10,11,28],"switch":[8,24],"t\u00fcrk\u00e7e":[11,15],"ti\u1ebfng":11,"true":[0,5,8,10,11,12,15,20,25,28,29,30,31,37,40,42],"try":[11,15,27,29,35],"var":8,"vi\u1ec7t":11,"while":[12,20,21,27,30],And:[8,18,21,28,30],But:[17,23,25,35,39],DNS:[38,39],For:[2,5,8,9,10,11,12,21,22,24,27,29,30,31],IPs:[5,38],Not:30,One:[12,17],That:30,The:[0,2,6,7,9,12,15,18,22,25,27,30,31,35,37,38,39,40,41],Then:[20,23,29,32],There:[8,12,24,30],These:[25,30],USE:8,Use:[5,8,10,11,24],Used:[8,15],Uses:15,With:[8,15,21,27,30,39],__dict__:30,__init__:28,__name__:30,_anchor:30,_chapter:30,_doc:30,_dot:30,_rest:30,_section:30,_sphinx:30,_subsect:30,_svg:30,a2disconf:8,a2dismod:8,a2dissit:8,a2enconf:8,a2enmod:8,a2ensit:8,abbrev:36,abl:[2,15,18,20,24,25,30],about:[1,21,22,24,27,33,39],abov:[8,11,15,21,24,30,31,39],absenc:30,abus:[5,35],academ:[3,11],accept:[5,11,20,36],access:[4,5,8,11,14,17,19,20,21,30,33,35],access_log:10,accord:[9,12,15],account:[8,10,21,32,37,38,40,41],accusam:30,acg:[3,11],acgsou:[3,11],achiev:4,acknowledg:19,across:15,act:[13,17],action:[0,5,12],activ:[8,10,11,12,13,15,21,23,24,29,31,37,40,41],actual:15,adapt:25,add:[7,8,10,12,13,18,22,24,27,28,30,36,37,38,40,41],added:[12,18,21,22,27,28],adding:[20,28,30,38],addit:[2,15,25,27,29,30],addition:[33,35],address:[11,13,15,25,35,38],adipisici:30,adjust:27,admin:[19,21,22,30,33,38,40],administr:[11,15,17,18,20,22,31,33,35],admonit:26,adopt:24,adorn:30,ads:35,advanc:11,advantag:[17,30],advertis:35,advis:[5,8,10],af2cae6:30,af77ec3:11,affect:17,after:[11,23,28,29,30,32,37,40],again:27,agent:[5,11,14,15,25],aggreg:[5,33,35],agpl:[38,39],ahmia:11,aim:[17,27,30],aka:27,alia:10,align:30,aliquid:30,aliquyam:30,all:[0,7,8,11,13,15,21,23,24,25,27,28,30,31,37,38,39,40,41,42],allow:[8,11,15,18,30,36],allowoverrid:8,alltogeth:6,along:5,alreadi:[8,10,21,24,29],also:[2,8,9,11,12,15,21,24,27,30,35,36,38],alt:30,alter:24,altern:[7,10,15,29,30,39],alwai:[9,10,21,24,25,29,35,37,40],amd64:[37,40],amet:30,among:[24,35],amsmath:30,analog:21,analysi:2,ancel:30,anchor:26,ani:[2,7,8,11,12,18,24,27,30,31,33,38,42],annoi:30,anonym:[33,35],anoth:[12,15,17,21,25,30,39],answer:[15,30,35,42],anymor:8,anyon:33,anyth:[23,35],anywai:[27,30],apach:[1,5,6,7,12,15,33,37,38,39,40,41],apache2:8,apache2ctl:8,api:[4,6,11,15,22,25,26,32,33,37],api_client_id:11,api_client_secret:11,api_kei:[11,15,25],apikei:[11,15],apk:[3,11],apkm:[3,11],apkmirror:[3,11],app:[3,8,10,11,12,21,30,37,40,41],appear:[29,30],append:20,appli:[15,16,24],applic:[5,10,12,15,17,21,41],approach:12,appropri:18,april:39,apt:[2,8,10,11,29,30],arab:11,arbitrari:[11,18,20,25],arch:[0,2,3,8,10,11,12,15,22,30],architectur:[5,6,7,8,10,21,33,37,40,41],archiv:[3,11],archlinux:[3,11,12,22,39],arg:42,argpars:42,argument:[13,14,24,30,42],arrai:25,arrow:30,art:[30,31],articl:[11,26],arx:[3,11],arxiv:[3,11],as_sdt:11,as_vi:11,asciimoo:[11,32,37,40],ascrib:30,aspect:[21,24],assert:24,assign:25,assum:[11,30],asterisk:30,attach:28,attend:21,attent:30,attribut:30,audienc:30,author:[11,24,30],auto:[21,30,32,39],autobuild:[24,27],autocomplet:[0,9,11,31],autodoc:30,autoindex:8,autoindex_modul:8,automat:[12,14,30],avail:[8,10,11,12,14,15,18,20,24,29,31,35,37,40,41],avoid:[5,7,14,15,18],awar:[8,30,38],babel:[2,11],back:21,backend:11,backquot:30,backslash:30,backup:38,bad:11,balanc:27,ban:[11,35],ban_time_on_fail:11,bang:15,bar:[6,30,37,40],barrier:17,base64:11,base:[2,4,9,11,15,18,20,21,25,27,31,39],base_url:[4,9,10,11,15,25],baseprofil:30,bash:[11,21,30,37,38,39,40],basic:[26,39],basqu:11,batch:38,baz:30,becaus:[17,22,24,25,29,32,35],becom:[21,30],been:[18,20,21,24],befor:[7,11,12,21,23,24,27,28,29,30,35,38,39],beginn:10,behavior:30,behaviour:[12,24,28],being:[5,15,17,23,33],below:[5,7,11,12,15,18,24,29,30,32],benefit:22,besid:35,best:[2,27,30,35,38],better:[2,8,10,25,27,35],between:[5,25,30],big:30,bigger:15,biggest:17,bii:[3,11],bin:[2,3,11,12,23,27,29,37,40],binari:[11,37,40],bind:[9,15],bind_address:[9,11,15],bing:[3,11,15],bing_imag:[3,11],bing_new:[3,11],bing_video:[3,11],bit:[12,30],bitbucket:[0,3,11],biv:[3,11],black:30,blank:[11,15,30],block:[5,11,15,26],blocker:21,blog:[12,21,30,33],bodi:[11,24,30],boilerpl:[11,21,27],bold:30,boldfac:30,book:11,bookfi:11,bool:25,born:24,bot:21,both:[12,22,23,24,31,35],botlimit:5,bottom:[14,28],boundingbox:25,box:[1,7,33,39],branch:[24,27,38],brand:[27,38],bring:[27,30],broken:30,browser:[11,15,17,21,23,24,27,35,39],btdigg:[3,11],bug:[12,19,27,29],buggi:12,bugreport:[12,24],build:[1,6,7,11,21,26,39],buildenv:27,builder:30,buildhost:[6,21,27,33,38,41],built:[24,25,29,30],builtin:[6,28,33],bulgarian:11,bundl:11,c3tv:[3,11],calcul:10,call:[17,18,21,22,27,32,39,42],callback:28,can:[0,1,2,4,5,7,8,9,10,11,12,13,15,17,18,20,21,22,23,24,25,27,28,29,30,33,35,37,39,40,41],cancel:30,cannot:[2,30,35,37,40],capabl:[17,24],caplabl:20,captcha:35,caption:[11,30],cardin:24,care:[11,15,18,30,38,39],carv:22,cat:[37,39,40],catalan:11,catcher:30,categori:[0,3,11,14,15,20,25,30,31,36,42],categories_ord:11,category_choic:42,caus:11,caution:30,caveat:30,ccc:[3,11],cdn:2,cell:30,cento:39,centos7:39,certif:11,cfg:[3,30],cgi:[11,12],chain:27,chainabl:36,chang:[11,12,15,21,23,24,27,30,38],changem:11,chapter:[5,23,24,30,40,41],charact:[18,24,30],chdir:[12,21],check:[2,6,18,20,21,24,25,27,29,32],checker:27,checkout:24,children:11,chines:11,chmod:12,choic:[7,11,21,30,35,38],choos:[7,24,25],chown:[8,10,11,12,37,40],chronolog:30,citi:25,classifi:30,clean:[26,39],clear:35,cli:32,client:21,clita:30,clock:23,clone:[7,9,10,11,15,21,24,27,29,41],close:[5,11],cloudflar:11,cmd:[21,38,39],code:[3,11,12,15,20,26,27,29,31,35,38,39,42],codebas:17,codeberg:[3,11],coffe:39,col:30,colleagu:22,collect:2,colon:30,colspan:30,column:30,com:[7,9,11,21,25,27,29,30,31,32,37,39,40,41],combin:8,come:[5,10,22,23,24,27,35,39],comfort:[12,30],comma:[18,22,31],command:[2,5,8,11,12,19,21,23,24,29,30,32,33,37,40,41,42],comment:[8,10,11,30,37,39,40],commit:[11,21,27,29,32],commodi:30,common:[12,29,33,35,37,40,41],commonli:30,commun:[8,10,11,15,20],compact:30,compani:35,compar:[8,10,12,21,39],compat:23,compil:[8,26,32],complet:[5,12,24,31,37,39,40,41],compon:[8,28,38],compromis:35,comput:[18,35],con:30,conatin:21,concern:[18,24],conclus:34,concret:[22,30],condit:30,conf:[2,8,10,30,37,40],config:[0,11,12,22,25,30,32,37,38,39,40,41],configur:[6,8,9,10,12,15,17,18,20,21,22,26,30,32,35,37],conflict:38,confnam:12,confus:30,connect:[5,10,11,18,20,33],consectetur:30,consequ:[15,24],consequat:30,consetetur:30,consid:7,consist:21,consol:11,construct:[25,30],consult:29,contact:15,contain:[11,14,18,19,29,30,33,38,39],content:[4,6,19,26,33,34,35,38],content_queri:11,content_xpath:11,context:[28,30,39],continu:30,contribut:[1,2,21,26,27,33],contributor:30,control:[8,12,35],convent:24,convert:[14,30],cooki:[25,33,35],copi:[9,11,24,30,39],copyright:30,core:[2,12,20],corner:24,corpor:11,correct:[10,15],correctli:10,correspond:12,could:[11,12,18,25,30],count:[11,30],countri:[11,15,25],courgett:31,cours:30,coverag:29,crawler:30,creat:[6,7,8,9,10,12,15,18,20,21,23,29,30,31,32,38,41],creation:[2,30],creativ:22,credenti:11,croatian:11,cross:30,crossref:[3,11],cryptic:29,cryptographi:15,cspan:30,css:[14,28],css_depend:28,csv:[5,31],csv_tabl:30,ctan:30,cthulhu:36,ctrl:[11,21,27],ctx:28,cup:39,curl:11,currenc:[3,11],currency_convert:[3,11],current:[14,15,20,24,25,32,36],custom:[11,15,24,30,36],custom_query_json:11,customiz:[0,17],customlog:8,cycl:[21,27],cymraeg:11,czech:11,daemon:[37,40,41],dai:[11,12,27,31,42],daili:21,dailymot:[3,11],dalf:1,danger:30,danish:11,dansk:11,data:[6,11,18,25,30,35],databas:[18,22,30],dataset:11,date:[0,25],datetim:[25,30],daunt:17,dbpedia:[11,31],dbt:11,ddd:[3,11],ddg:[3,11,36],ddi:[3,11],de_d:15,deactiv:[15,37,40,41],debian:[2,6,10,11,12,16,30],debug:[11,15,21,26,27,37,38,40,41],decid:[17,27],decim:25,dedic:[12,21,30],deeper:[27,30],deezer:[3,11],def:[11,20,25,28,30],defaul:30,default_doi_resolv:11,default_http_head:[11,15],default_lang:11,default_local:[0,11,15],default_on:28,default_them:[0,11,15],defaultop:11,defin:[11,15,28,30],definit:[3,11],dejavu:2,delet:[15,31,32,39],delimit:[11,18,30],demon:11,demonstr:10,deni:8,depend:[5,6,8,10,14,17,20,21,23,25,27,29,30,31],deploi:[9,15,27,30],describ:[5,7,8,12,15,21,27,30,41],descript:[11,14,24,28,30,37,40],deserv:24,design:[20,30],desir:[11,25,29],desktop:[4,21],detail:[8,11,15,20,30],detect:[11,15],deutsch:[0,11,15],dev:[2,8,10,11,24,27,30],devel:[2,11],develop:[2,11,15,17,18,19,22,23,24,27,30,33,38],deviantart:[3,11],dfrac:30,diam:30,dict:[18,25,30,42],dictzon:[3,11],didn:11,diff:30,differ:[8,10,11,12,14,15,21,23,24,25,30,39],digbt:11,digest:14,digg:[3,11],digit:33,digraph:30,dir:[11,37,40],direct:[8,26,30,37,40],directli:[10,15,39],directori:[3,8,9,11,12,18],disabl:[3,6,11,12,14,15,21,27,28,30,31,38,39],disabled_engin:31,disabled_plugin:31,disadvantag:30,discoveri:[18,20,22],discret:38,displai:[2,9,11,14,15,25],display_error_messag:[15,25,30],displaystyl:30,dispos:38,disrespect:24,dissem:11,dist:[24,27],distinguish:30,distribut:[8,10,12,15,21,22,30,37,40],distributor:6,div:11,dive:35,divid:21,dl_prefix:[4,11],dnf:[2,8,10,11,30],doai:11,doai_rewrit:31,doc:[3,6,8,11,12,21,26,30,39],docker:[6,7,27,33],dockerfil:9,docs_url:27,doctest:30,doctre:30,docuemt:2,document:[4,8,12,20,22,27,30,33,39],documentroot:8,docutil:30,doe:[4,8,12,17,20,21,25,27,30,31,34],doesn:15,doi:[11,14],doi_resolv:11,doku:11,dolor:30,domain:[4,11,30],domin:24,don:[8,11,15,23,25,27,30,33],done:[8,10,27,30,38,39],dontlog:8,dot:2,doubl:30,download:[4,7,11,15,21,27,30,37,40],drop:23,dry:9,dsitro:21,duckduckgo:[3,11,15,31,36],duckduckgo_definit:[3,11],duckduckgo_imag:[3,11],duden:[3,11],due:[37,40],dump:42,duo:30,duref:30,dutch:11,dutch_belgium:11,dvisvgm:2,e0b3:21,e97:21,each:[12,15,18,21,30,31,39,42],easi:[21,33],easier:24,easiest:18,easili:24,ebai:11,echo:[11,37,39,40],ecosystem:30,ecretvalu:15,edit:[11,12,17,21,24,27,30,35,40],eesti:11,effect:[7,24,30],egg_info:27,eingab:11,eirmod:30,either:29,el_gr:11,elast:11,elasticsearch:[11,18],element:[18,30],elimin:29,elit:30,elitr:30,els:39,elthumbnailresultarea:11,emac:30,email:[11,15],emb:[6,30],embed:[0,9,30],emperor:12,emphasi:30,empti:[4,8,15,30,31],en_u:[15,25],enabl:[0,8,10,11,12,18,22,24,27,28,29,31,38],enabled_engin:31,enabled_plugin:[11,31],encapsul:21,enclos:30,encod:[11,12,30],encourag:30,encrypt:33,end:[23,30,39],endfor:30,engin:[0,6,11,17,19,24,26,29,30,31,33,35,36,37,40,42],engine_c:42,engine_categori:42,english:[0,11,15],enim:30,enough:[7,8,10,32],enpoint:31,ensur:24,ensure_ascii:42,enter:[11,23],entiti:11,entri:[9,11,26,38,39],env:[8,12,21,27,29,38,39],environ:[9,10,11,15,21,24,26,33,37,39,40,41],eof:[37,39,40],eol:39,eos:30,equat:[2,26],erat:30,erowid:[3,11],error:[3,11,15,18,25,29,30],error_log:10,escap:30,especi:30,esperanto:[0,11],essenti:[2,11],est:30,estonian:11,etc:[5,8,9,10,11,12,15,21,24,37,38,41],eth0:[21,39],eto:[3,11],etool:[3,11],etymonlin:[3,11],euskara:11,evalu:[30,39],even:[12,21,39],event:12,ever:39,everi:[15,21,24,25,35,39],everyon:[20,35],everyth:[11,30,35],evil:11,exactli:[5,30],exampl:[0,5,8,10,11,12,15,18,20,21,22,24,26,29,31,34,35,38,39,42],exceed:5,excel:[7,10],except:[8,15,23,24,25,30,38],exchang:35,exec_modul:42,execstart:[37,40],execut:[15,18,32],exercis:21,exercit:30,exist:[8,9,10,11,15,17,21,23,24,27],exit:[11,21],expand:30,expect:[18,22,24],experi:12,experienc:[17,21],experiment:38,explain:24,explan:3,explanatori:[37,39,40,41],explicit:30,expos:[11,22],express:18,ext:2,extend:[20,24,28,30],extens:[2,30],extern:[5,11,13,25,26,30,31,35],extra:[2,8],extract:2,extrem:17,eye:[21,30],fa_ir:11,face:30,fact:19,fail:[21,29],fals:[0,11,15,28,29,30,31,40,42],familiar:[12,27],fanci:24,faq:30,fashion:15,favorit:[24,27],fd00:8,fd42:21,fdroid:[3,11],fe80:8,fea5:21,featur:[13,17,22,24,30,35],fedora31:39,fedora:[2,8,10,11,12,30,39],fedoraproject:39,feedback:[24,30],feel:[28,30],fetch:[19,33],few:[15,24,25],fgr:11,fgrep:11,fieldnam:30,figur:[8,10,26],fil:11,file:[2,3,4,8,9,10,11,12,15,17,18,20,21,22,23,24,27,28,29,32,37,39,40,41,42],file_filt:32,filenam:25,filepath:11,files:25,filesystem:4,filipino:11,fill:30,filter:[0,5,11,31],filtron:[1,6,7,8,10,12,21,33,38,39],filtron_api:[37,38,39],filtron_listen:[37,38,39],filtron_target:[37,38],find:[1,5,9,11,18,20,22,24],fine:[7,11],finish:[32,39],finnish:11,firefox:[2,11],firewal:5,first:[8,10,11,15,17,20,21,23,27,29,30,35],first_page_num:11,fit:[12,22,28],fix:[24,27,29],fixm:8,flask:[28,30],flexibl:[18,30,38],flickr:[3,11],flickr_noapi:[3,11],fmt:39,fnd:[11,18],folder:[8,10,12,21,24,25,27,29,30,32,38,39],follow:[4,5,7,8,10,12,13,15,18,24,25,27,29,30,32],followsymlink:8,font:2,fontsrecommend:2,footer:24,force_timeout:[38,39],fork:[7,21,24,38],form:[0,11,30,35],format:[5,11,25,29,30,31],forward:[5,10,35],found:[2,17,19,27,28],foundat:[17,18,20,22,23],fr_fr:15,fraction:30,framalibr:[3,11],free:[3,11,24,28,33],french:11,fresh:8,friend:[22,27,35],frinkiac:[3,11],frk:[3,11],frl:[3,11],from:[1,2,5,7,8,9,10,11,12,14,15,17,18,20,21,22,23,24,27,30,32,33,35,37,38,39,40,41,42],front:30,fsd:[3,11],fsf:11,full:[4,15,24,30,37,40],fullcit:11,fulli:[8,10,17],fun:[11,19],fund:[18,20,22],further:[27,29,38],furthermor:[25,29,31,35],futur:39,gain:35,galego:11,galician:11,gate:27,geektim:[3,11],gems__gem:11,gen:[3,11],gener:[0,6,8,9,11,12,15,20,24,26,27,31,35,42],genesi:[3,11],geniu:[3,11],gentlemen:19,gentoo:[3,11],geojson:25,ger3:11,german:[0,11],get:[2,5,6,7,8,10,11,14,21,24,25,27,29,30,31,32,33,37,39,40,42],get_engines_stat:30,get_search_queri:42,gid:12,gigablast:[3,11],gil:12,git:[2,7,8,9,10,11,15,16,21,24,25,27,29,30,37,38,40,41],git_branch:[21,27,38],git_url:[21,27],gitea:11,github:[3,7,9,11,20,21,23,27,29,30,31,37,39,40,41],gitlab:[3,11],gitmoji:24,give:[8,27,29],given:30,glob:12,global:6,global_ip:39,glyph:30,gnu:27,go1:[37,40],go_env:[37,40],goe:27,goi:[0,3,11],going:[5,18,20,22,30,35],gon:[3,11],good:[7,8,10,21,29,39],googl:[0,3,11,15,31,37,40],google_imag:[3,11],google_new:[3,11],google_video:[3,11],gopath:[37,40],gos:[3,11],got:21,gov:[3,11],gpa:[3,11],gpm:[3,11],gps:[3,11],grant:[8,12],graphic:[17,18],graphviz:2,greek_greec:11,grep:[11,39],group:[30,35,37,40],grow:17,grumpi:30,grunt:29,gs_r:11,gs_res_ccl_top:11,gs_ri:11,gubergren:30,guest:39,guid:[10,17,27,29,30],guidelin:22,guilabel:30,habr:[3,11],habrahabr:[3,11],hack:[17,18,20,22,23,24],hackabl:26,hackerspac:36,handl:[15,21,30,35,39],handler:8,happi:[17,18,20,22,23,24],hard:[17,25,30],harden:[37,40],has:[13,15,18,20,22,24,25,29,30,35],hash:14,haskel:11,hat:30,have:[2,7,8,9,10,11,15,17,18,21,23,24,25,27,30,35,38,39],hbar:30,head:11,header:[5,8,10,11,15,25,30],headers_modul:8,headlin:11,heard:30,hebrew:[11,15],height:30,help:[9,14,24,27,29,37,38,39,40,41],helper:30,her:22,here:[2,8,10,11,12,15,20,21,24,28,30,38],herein:1,heterogen:21,hex:11,hidden:[0,22,35],hide:11,hide_obsolet:11,hierarchi:4,him:22,hint:[1,30,38],histor:[8,23],histori:11,hit:11,home:[11,21,32,37,38,40,41],hoogl:[3,11],host:[2,5,8,10,11,15,17,21,22,24,27,32,33,39],hostnam:[10,39],hotkei:[0,14],hous:25,house_numb:25,how:[1,2,6,7,8,10,12,15,19,21,26,27,30,33,34,37,40],howev:[20,25,31],href:11,hrvatski:11,html:[0,2,8,11,12,24,25,27,30,40],html_math_render:2,html_url:11,http:[0,2,4,5,6,7,9,11,12,13,14,15,20,21,24,25,27,29,30,32,33,37,38,39,40,41],http_connect:[5,10],http_host:[5,10],http_protocol_vers:11,httpd:8,https_rewrit:31,hub:11,huge:30,hungarian:11,idea:29,identifi:[38,39],ifmodul:8,ignor:15,illustr:7,imag:[0,2,3,6,11,13,15,21,26,27,31,36,39,40,41,42],image_proxi:[8,10,11,15,31,40],imagemagick:[2,30],imagin:18,img:11,img_src:25,imgmath:2,imgmath_font_s:2,imgmath_image_format:2,imgmath_latex:2,immedi:14,implement:[10,12,17,23,24,25,28,39],impli:22,importlib:42,improv:27,in_contain:39,ina:[3,11],inbound:15,includ:[8,10,18,21,22,27,30,39],inclus:36,incom:8,increment:27,indent:[30,39,42],index:[4,8,11,18],infinit:14,infinite_scrol:[14,31],info:[11,15,21,27,39,40],info_msg:39,infobox:42,inform:[11,13,14,15,22,24,25,39],infrastructur:[1,12],infratructur:5,inherit:30,ini:[8,9,10,12,21],init:[12,20,21,26,39],initi:[11,12,21,32,39,42],initialize_engin:42,inlin:26,input:[0,22,30],insecur:11,insert:[30,32],insid:[9,11,18,21,25,39],insight:35,inspect:[21,37,38,40,41],instal:[1,2,5,6,12,13,21,23,24,27,29,30,32,33,38],instanc:[0,1,6,7,8,10,11,12,15,17,18,20,21,22,27,31,32,33,34,37,38,39,40,41],instance_nam:[0,9,11,15],instance_url:11,instead:[12,17,22,23,29,30,42],instruct:30,insuffici:20,intefac:4,integr:33,intend:9,intent:24,interact:[11,37,38,40,41],interfac:[8,11,15,18,19,33],interfer:24,interlingua:11,intermedi:27,intern:29,internet:[7,18,20,33],interpret:[12,30],interpretor:12,intersphinx_map:30,interv:5,intranet:[7,8,10],intro:[8,10],introduc:[17,18,19,20,22,30,33],introduct:[27,29],intuit:30,inv:30,inventori:30,investig:23,invidi:[3,11],invidio:11,invidunt:30,ipsum:30,ipv4:[10,39],ipv6:[10,21,39],isn:[8,10],iso:[15,25],isol:[5,21],issu:[12,20,22,23],ital:30,italian:11,italiano:[11,15],item:30,its:[2,7,17,18,24,27,30,31,35,39],itself:[4,12,24],japanes:[11,15],javascript:[14,26],jinja:30,jinja_context:30,job:38,join:30,js_depend:28,json:[5,11,31,37,42],json_engin:[3,11],json_seri:42,juli:39,jump:[11,21,27],june:39,just:[0,5,10,21,27,30,35,39],justo:30,kasd:30,kbd:30,keep:[8,10,11,15,21,27],keep_onli:15,kei:[9,11,13,14,15,18,20,25,32,40,41,42],kickass:[3,11],kind:[8,30,35],kiss_:30,know:[8,12,20,21,22,30,35,39],knowledg:30,known:27,kvch:[17,18,20,22,23],l19:21,label:30,labor:30,labori:30,lack:24,lang:[0,12,31,32,42],languag:[0,3,5,11,12,15,25,27,30,31,32,36],language_support:[25,30],laptop:35,larg:[12,37,39,40,41],last:30,lat:25,later:[38,39],latest:[11,12,32],latex:2,latexextra:2,latexmk:2,latitud:25,latter:[27,30],launch:39,layout:6,lazi:12,lc_all:12,lc_messag:32,leak:18,learn:30,least:[21,23],leav:11,leech:25,leecher:25,left:[11,30],legaci:31,lenga:11,length:24,less:[8,10,12,17,29,30,35],let:[11,18,21,30,35,38],level:[24,30],lib:[8,11,12,37,40],libapache2:8,libffi:[2,11],libgen:11,libr:11,librari:[3,11],librsvg2:2,librsvg:2,libssl:[2,11],libxml2:[2,11],libxslt:[2,11],licens:[38,39],light:10,like:[0,2,11,14,15,22,24,25,27,28,30,38],like_hotkei:31,limit:[5,8,11,18,19,20,25,30,33],line:[8,10,11,19,20,24,27,39,42],link:[11,12,14,15,21,26],lint:[6,27],linux:[0,2,3,8,10,11,12,15,19,22,30,33,37,38,39,40],linuxcontain:39,linuxcontainers_org_nam:39,linuxdoc:30,list:[8,11,18,20,22,25,26,27,28,31,36,42],listen:[5,8,10,11,15,37,38,39,40],liter:26,literalinclud:30,lithuanian:11,live:[21,26,30,39],load:[12,14,15,39,42],loader:42,loadmodul:8,lobst:[3,11],loc:11,local:[0,4,5,9,10,11,12,15,18,21,22,23,25,27,28,29,32,37,38,39,40,41],local_imag:39,localhost:[8,9,10,11],locat:[4,5,6,8,10,11,12,30],lock:11,log:[5,6,12,15,21,29,35,37,38,40,41],logger:12,logic:24,logicodev:[11,31],login:11,lon:25,longer:27,longitud:25,look:[8,11,27],lorem:30,loremlorem:30,lot:21,low:[8,10],lsb:12,lxc:[21,33,38],lxc_host_prefix:39,lxc_repo_root:39,lxc_set_suite_env:39,lxc_suit:[21,39],lxc_suite_info:39,lxc_suite_instal:39,lxc_suite_install_info:39,lxc_suite_nam:39,lxd:[21,39],lxml:[2,11],machin:18,made:[15,21],magna:30,magnetlink:25,magyar:[11,15],mai:[11,15,21,30,37,40],main:[8,11,14,27,32,38],mainlin:10,maintain:[1,12,21,30,38],mainten:[5,7,21,37,40,41],make:[2,9,17,21,22,23,24,26,30,35,39],makefil:[21,24,26,33,38,39],man:30,manag:[5,16,17,27,29,37,40,41],mandarin:11,mandatori:7,mani:[5,11],manipul:[17,39],manual:[15,27,30],manuali:30,map:[0,3,11,30,42],mark:[11,30],markup:26,mass:24,master:[12,16,24,27,30,38],match:11,match_al:11,math:[2,26],mathemat:30,mathrm:30,matter:[21,25,35],max:[5,11,25],max_ban_time_on_fail:11,max_redirect:25,max_request_timeout:[11,15],maxim:24,maximum:[11,15,24,25],mayb:[11,18],mean:[11,12,21,24,30,35],meaning:30,meant:30,media:[0,3,11,25,42],mediawiki:[3,11],memori:15,mention:23,menuselect:30,merg:[11,15,21],messag:[5,15,24,25,27,29,30,32],messagespo:32,meta:[11,30],metadata:[11,30],metag:[3,11],metasearch:[11,25,33,37,40],method:[0,7,11,12,25,30],microsoft:[3,11],microsoft_academ:[3,11],middlewar:5,might:[12,21,22,24,27,30,31,35,38,39],migrat:23,mileston:18,min:25,minim:[11,30],mirror:[3,11],misbehav:24,miss:[5,30],mix:21,mixcloud:[3,11],mjk:[3,11],mkdir:[8,10,11,12,37,40],mnkhrc:11,mod:[8,30],mod_autoindex:8,mod_head:8,mod_proxi:8,mod_proxy_http:8,mod_proxy_uwsgi:8,mod_uwsgi:8,mod_wsgi:8,mode:[11,12,15,30,38,39],moder:11,modern:8,modifi:[9,12,15,30,36],modul:[8,12,28,30,42],module_from_spec:42,mojeek:[3,11],monet:35,monitor:[12,21],mono:2,month:[0,31,42],more:[5,11,13,15,17,20,24,27,30,31,33,35,38,39],morecol:30,morerow:30,morti:[1,7,8,10,11,13,21,33,38,39],morty_kei:9,morty_listen:[38,39,40],morty_url:9,most:[2,8,15,23,35,37,38,40,41],mostli:[12,30],motiv:19,mount:4,mount_prefix:[4,11],move:[20,24],movi:[3,11],mpg5gc:11,much:[24,30],multi:[37,40],multibl:25,multipl:[14,15,30,35],multithread:12,multius:11,music:[3,11,42],must:[4,10,15,18,23,24,25,29,30],my_arg:30,my_funct:30,my_other_arg:30,mydomain:38,mymemori:[3,11],myproject:29,name:[0,3,5,8,10,11,14,15,18,21,22,25,27,28,32,39],name_of_python_fil:28,name_with_namespac:11,namespac:42,nativ:12,naver:[3,11],navig:14,nearmatch:11,necessari:22,nederland:[11,15],need:[5,7,8,9,10,11,12,15,20,21,24,27,30,35,37,38,39,40,41],neither:33,net:[11,33],network:[11,15,18,37,40],never:[21,27],nevertheless:[8,10],newcom:17,next:[8,10,14,19,30],nginx:[1,5,6,7,15,21,33,37,39,40,41],nightmar:30,nil:39,nisi:30,nl_be:11,nlnet:[17,18,20,22,23],no_parsed_url:42,noconfirm:[2,11],node:[11,27,29],nodej:29,nofollow:[11,15],noindex:[11,15],non:[11,20],none:[8,11,25,27,30,31,42],nonewprivileg:[37,40],nonumi:30,noopen:[11,15],nor:33,normal:[8,21,25,30,38],nosniff:[11,15],nostrud:30,not_evil:11,notat:11,note:[8,10,11,24,31],notic:21,now:[8,10,11,18,21,22,23,28],npm:[3,11,27,29],number:[5,11,15,25,30,31,39],number_of_result:[11,25],numer:30,numref:30,nvr:[3,11],nyaa:[3,11],oad:[3,11],oadoi:11,oaf:11,oap:[3,11],obj:[30,42],object:[25,28,30,42],obsolet:11,obtain:15,occitan:11,off:[8,10,11,24,37,39,40,41],offer:[4,12],offici:11,offlin:[3,19,22,25,30,33],often:[25,30,38],old:[8,9,21],omega:11,on_result:28,onc:[21,39,42],one:[8,11,12,15,21,22,24,27,30,33,35,37,38,39,40,41],ones:[25,37,40],ongo:27,onion:11,onli:[2,7,8,11,13,15,18,22,24,28,30,31,38,39,42],onlin:[20,30,33],open:[8,11,14,21,23,24,27,30,31,35,38,39],openair:11,openairedataset:[3,11],openairepubl:[3,11],openrepo:[3,11],opensemant:11,opensemanticsearch:11,openssl:11,openstreetmap:[0,3,11],oper:[23,30,35],option:[8,9,11,12,13,15,17,18,21,22,24,25,27,28,29,30,31,35,37,38,40,41,42],order:[8,11,24,29,30],org:[2,4,5,8,10,11,12,15,25,30,39],organ:33,orient:8,origin:[6,16,21,30],oscar:[0,11,15,31],oscar_styl:11,osm:[0,3,11,25],osp_hti:11,oss:11,other:[15,18,24,25,30,35],otherwis:25,our:[1,5,7,17,21,24,27,30,39],out:[8,10,20,21,24,27,30,37,39,40],outgo:[11,15],output:[2,18,22,30,31,37,39,40,41],outsid:21,outstand:30,over:[18,21,30,33,39],overlin:30,overlook:21,overrid:[11,15],overview:[5,15,26,27,31,33,38],overwritten:25,own:[7,18,21,27,33,35],owner:27,packag:[2,5,6,8,10,12,21,27,29,30,37,39,40,41],pacman:[2,8,10,11,30],page:[3,8,10,11,14,15,17,22,24,25,26,30,31,35,36,42],page_s:11,pageno:[11,25,31,42],pagenumb:25,pair:20,palletsproject:30,param:[5,20,25,30],paramet:[15,25,26],paramt:25,parent:30,pars:[31,42],parse_argu:42,parse_lin:20,parse_regex:18,part:[4,11,15,17,30,39],parti:35,partial:30,partli:25,pass:[8,10,20,24,31],password:[11,15],past:0,patch:[24,30],path:[5,8,11,15,18,21,30,37,39,40],pattern:11,paywal:14,pdb:[3,11],pdbe:[3,11],pdf:2,peer:11,peertub:[3,11],peopl:[17,18,35],pep8:[24,27,29],pep8_check:27,pep:30,per:[12,24,25,30],perfect:21,perform:[12,14,20,25],persian:11,phase:29,photon:[3,11],php:11,phrase:30,piec:30,pip3:23,pip:[2,11,32],pipe:20,piratebai:[3,11],pix:31,place:[7,10,12,24,25,30,32,35],plai:[3,11],plaintext:30,pleas:[23,24,29,30,31],plenti:24,plu:[8,10],plugin1:11,plugin2:11,plugin:[0,2,6,11,12,24,26,31,33],pocket:[8,10],point:[9,10,11,12,21,26,27,30,35],pointer:30,pointhi:31,polici:[11,15],polish:11,polski:11,polygon:30,pool_connect:[11,15],pool_maxs:[11,15],popen:20,popular:30,port:[5,9,10,11,15,24,25,39],portugues:11,portuguese_brazil:11,possibl:[9,11,13,14,15,18,20,21,22,30,31],post:[0,11,21,24,31],post__text:11,post__title_link:11,post_search:28,postcod:25,pot:32,pov:30,power:[18,30],practic:24,pre_search:28,prefer:[7,11,17,22,30,31,35,36],prefix:36,preinstal:[5,21],prepar:[19,33,39],prerequisit:[21,30],present:[20,22],preserv:[24,30],press:[14,27],pretti:15,preview:25,previou:38,previous:18,primari:39,primary_ip:[38,39],prime:26,primer:[26,33],principl:30,privaci:[7,8,10,11,12,21,26,30,34,37,40],privat:[18,19,20,33,34],privatedevic:[37,40],privatetmp:[37,40],privet:11,pro:30,probabl:15,problem:[5,11],procedur:[7,39],process:[2,5,12,20,21,22,27],processor:30,produc:30,product:[11,15,19,38],profil:[11,27,33,35,37,40],prog_arg:42,program:27,progress:[19,37,40],project:[11,12,21,26,27,30],promot:33,prompt:[21,38],proper:[35,37],properli:23,propos:20,protect:[1,6,8,10,11,15,21,24,33,34,37],protectsystem:[37,40],protocol:[9,10,12,15,21],provid:[11,18,22,24,25,30],proxi:[1,6,7,10,11,15,21,25,31,33,35,37,38,39,40,41],proxif:[8,10,11],proxifi:13,proxy1:[11,15],proxy2:[11,15],proxy3:15,proxy4:15,proxy_add_x_forwarded_for:[5,10],proxy_buff:10,proxy_http:8,proxy_http_modul:8,proxy_modul:8,proxy_pass:[5,10],proxy_set_head:[5,10],proxy_uwsgi_modul:8,proxypass:[8,37,40],proxypreservehost:8,psi:30,pt_br:11,ptb:[3,11],ptipython:42,pub:[3,11],public_host:37,public_url:[37,38,39,41],public_url_morti:[39,40],public_url_path_morti:38,publicli:20,publish:25,publishedd:25,pubm:[3,11],pull:[9,16,20,24,30,32],purpos:[15,25,29],push:[24,27],put:18,pwd:[9,21],py3:27,pybabel:32,pybuild:26,pyclean:27,pyenv:[11,12,21,27,41],pygment:30,pylint:26,pylintrc:27,pypi:[27,30],python2:[12,23],python3:[2,11,12,23,29,42],python:[2,11,12,15,19,21,26,28,29,30,33,41,42],pythonhom:12,pythonpath:[12,21],qout:39,quadratur:33,qualiti:[2,27,30],queri:[11,14,18,20,22,25,31,35,36,42],query_enum:18,query_typ:[11,18],question:[30,35],qui:30,quickstart:[24,26,27,33],quiet:27,quit:[8,21,24,27],qwant:[3,11],qwer:36,qwi:[3,11],qwn:[3,11],qws:[3,11],rain:42,rais:[20,25,42],raise_for_statu:25,rand:11,random:[25,35],rang:[3,12,25,31],rangl:30,rate:5,rather:22,raw:30,rbg:[3,11],reach:[4,30],reactiv:15,read:[20,21,24,27,29,38],readability_:30,reader:[21,30],readi:21,readlin:20,readm:[5,8,12,13],readthedoc:12,real:[5,10],realli:7,reason:[8,12,17,23,27,30],rebuild:[24,27],rebum:30,recol:[3,11],recommend:[2,5,7,11,12,24,25,27,30,38],reconsid:24,record:[25,30],reddit:[3,11],redefin:25,redirect:[14,25],reduc:24,ref:[37,40],refer:[1,4,11,30,35],referenc:30,referr:[11,15],refnam:30,regardless:35,regex:11,regist:26,regular:[18,20],reinstal:[37,41],rel:[10,21,30,39],relat:11,relateditem:11,releas:[23,27,39],releng:39,relev:11,reli:15,reload:12,remark:21,rememb:[12,21,24],remot:39,remote_addr:[5,10],remov:[12,14,15,21,35,37,38,39,40,41,42],renam:[9,31],render:2,replac:[8,10,11,17,21,28],repo:[11,24],repo_root:38,report:21,reposetori:21,repositori:[11,15,17,21,39],req:11,request:[6,8,10,11,15,20,22,24,26,28,30,35],request_timeout:[11,15],request_uri:8,requesthead:8,requir:[2,8,11,14,23,24,25,26,27,28,29,30,31,42],requisit:27,res_dict:42,reset:35,resourc:10,respect:[11,24,35,37,40],respons:[11,15,25],rest:[22,26,33],restart:[6,9,10,11,12,13,16,21,37,40],restrict:[11,22],restructuredtext:30,result:[1,2,6,7,8,10,11,14,15,19,20,26,30,31,33,35,40,41,42],result_proxi:[8,9,10,11,13,40],result_separ:18,results_numb:42,results_on_new_tab:[11,31],results_queri:11,results_xpath:11,retriev:[18,32],return42:30,return_cod:20,rever:8,revers:[1,6,7,10,37,38,39,40],rewrit:[0,11,14],rfc:30,rhel:[2,8,10,11,12,30],rid:[27,39],right:[12,22,28,30,33],rightmost:30,rigth:30,road:25,robin:15,roboag:5,robot:[11,15,27,29],robotframework:23,role:26,rolenam:30,roll:39,romanian:[11,15],root:[8,10,21,27,39],rotat:30,round:[15,24],rout:[6,8,10,30],row:30,rowspan:30,rspan:30,rss:[5,31],rst:[24,30],rst_titl:39,rubygem:[3,11],rule:[5,24,37],run:[2,5,7,8,9,10,11,12,13,15,19,20,21,22,24,25,26,28,30,32,33,35,37,38,40,41,42],runner:41,runtimeerror:20,russian:[11,15],rzegz:11,sadipsc:30,safe:[3,31],safe_search:[0,11],safesearch:[30,31,42],same:[5,11,15,18,21,25,30],sampl:[6,30,37],san:2,sanctu:30,sanit:21,sas:42,satisfi:29,save:8,sc2031:39,sc2034:[38,39],scalabl:30,scale:[21,30,39],scaleabl:30,scan:12,scanr:11,scanr_structur:11,scc:[3,11],scd:[3,11],scenario:4,schedul:[20,23],scheme:[5,10],scholar:[3,11],schroeding:30,sci:11,scienc:[3,11,42],scope:24,scratch:2,script:[1,5,6,8,10,11,21,29,37,38,39,40,41,42],script_nam:10,scroll:14,scs:11,sdist:27,sea:30,search:[3,4,5,6,9,11,14,15,18,20,21,22,24,25,26,30,33,34,35,42],search__suggest:11,search_dir:[4,11],search_on_category_select:[14,31],search_path:25,search_q:42,search_queri:42,search_str:25,search_typ:11,search_url:11,searchcod:[3,11],searchcode_cod:[3,11],searchcode_doc:[3,11],searchqueri:42,searchvoat:11,searx:[0,1,2,5,6,7,8,12,13,15,16,18,19,20,24,25,27,28,29,30,31,32,34,36,37,38,40,42],searx_debug:42,searx_engin:11,searx_instance_nam:41,searx_internal_http:41,searx_internal_url:38,searx_settings_path:[11,12,15,21],searx_settings_templ:38,searx_url:[27,38],searx_userag:11,sec:5,second:[11,15,30],secret:[15,22],secret_kei:[11,15],section:[10,11,15,21,27,28,30],secur:[11,18,33],sed:[11,30],see:[2,5,8,9,10,11,12,13,15,20,21,22,24,29,30,31,33,36,37,39],seed:25,seeder:25,select:[14,27,30,35,36,39],selenium:29,self:[11,14,17,33,37,39,40,41],self_inform:31,semant:[3,11,24],semanticscholar:11,send:[2,5,15,35],sens:30,sensit:11,sent:35,sep:[3,11],separ:[18,22,24,30,31,37,40],sepiasearch:[3,11],serbian:11,seri:27,serial:42,serializ:42,serif:2,seriou:21,serv:[24,35,39],server:[5,6,7,9,11,12,15,21,29,39,40],server_nam:10,servic:[5,6,7,10,11,12,13,21,30,31,33,35,37,38,39,40,41],service_home_bas:38,service_us:[37,38,40,41],service_ussr:38,session:[11,29],set:[2,4,6,8,9,10,11,12,13,17,18,20,21,24,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42],setenvif:8,sethandl:8,setup:[1,2,5,6,7,8,10,11,12,21,26,30,33,37,40],setuptool:11,sever:21,seznam:[3,11],sh_web_passag:11,share:[8,12,21,22,39],shell:[6,11,19,21,33,37,38,39,40,41],shellcheck:[2,11,30,38,39],ship:10,shortcut:[0,3,11,15,18,22,25,30],should:[7,8,10,15,17,21,23,24,30,32],show:[1,2,3,8,10,11,18,21,30,37,38,39,40],show_metadata:11,shown:[3,7,8,11,21,30],side:[7,30],sign:30,signal:21,signifi:30,similar:[12,15,30],simpl:[21,27,31,37,40],simple_query_str:11,simplest:30,simpli:[5,21,24,27,31,37,38,40,41],simplifi:[5,27,37,40,41],simultan:[11,15],sinc:[10,11,17,27,30],singl:[8,10,12,35,39],sit:30,site:[0,5,6,8,15,25,30,31,37,40,41],size:[11,25],skeleton:20,skill:26,skip:29,slovak:11,sloven:11,slovenski:11,slow:[11,15],small:[11,25,41],smylink:21,snap:[21,39],snapcraft:39,snippet:[11,13],social:[0,3,11,42],sock:[11,15],socket:[8,9,10,12],socks5:[15,25],socks5h:15,soft:[25,26],soft_max_redirect:25,softwar:[3,11,21,37,40],sold:35,solr:11,solut:[18,22],solv:[5,22],some:[1,7,8,12,15,21,22,24,27,30,37,38,39,40,41],someon:35,someth:[18,24,27],sometim:17,sort:11,sort_kei:42,soundcloud:[3,11],sourc:[11,15,21,23,26,27,30,32,35,37,39,40,42],source_fil:32,source_ip:[11,15],source_lang:32,sp_keyword:11,space:15,span:[11,30],spanish:11,spars:30,spdx:[38,39],speak:12,spec:42,spec_from_file_loc:42,special:[6,7,12,18,25],specif:[12,15,18,25,39],specifi:[9,12,15,25,31],spell:11,sphinx:24,sphinxopt:24,splinter:23,split:24,spoilt:7,sponsor:[17,18,20,22,23],spotifi:11,src:[5,10,11,12,21,41],srv:8,ssl:[25,33],stabl:[11,15],stack:[21,29,39],stackoverflow:[3,11],stage:30,standalon:17,standalone_searx:[33,38],standard:[8,11,24,25,28,39],start:[1,5,8,10,11,12,19,24,25,27,33,37,39,40,41],startpag:[3,11,31],stash:[16,27],stat:30,static_path:11,statist:30,statu:[37,38,40,41],stdout:[20,42],step:[1,6,7,19,21,24,33,41],stet:30,stf:11,stone:22,stop:[5,8,10,11,12,21,25,27,37,39,40,41],storag:39,store:[11,25,35],stori:11,str:42,strang:12,street:25,strict:[11,22],string:[11,14,22,25,31,32],stroke:30,strong:30,structur:[11,24,26],stub:30,stuff:30,style:[11,26,31],sub:[24,30],subdir:10,subdirectori:10,subheadlin:11,subject:30,submit:[18,24],subnet:8,subprocess:20,subrul:5,subscript:30,subsect:30,subshel:39,substitut:26,sudo:[2,7,8,10,11,12,16,21,29,30,37,38,39,40,41],suffix:[9,11,15],suggest:[1,28,42],suggestion_xpath:11,suit:[19,38],suitabl:30,summari:11,suomi:11,sup:30,superscript:30,supervisor:17,support:[2,3,6,10,11,12,15,18,19,22,24,25,30,31,33,35,37,39,40],sure:[9,11,21,23],surround:30,suspend:11,suspici:5,svenska:11,svg:2,svg_imag:30,swedish:11,swisscow:11,symbol:[12,21],symlink:10,syntax:[31,33,34],sys:42,syslog:[37,40],system:[11,12,21,22,23,24,27,30,37,38,40],systemctl:[8,10,12,16,21],systemd:[12,37,40,41],systemexit:42,szn:[3,11],tab:[11,26,31,39],tabl:[3,11,20,26],tag:[11,15],tailor:35,taiwanes:11,take:[12,15,17,24,32,39],taken:[30,38],takimata:30,tamil:11,tar:[27,37,40],target:[21,24,26,30,33,37,39,40],task:[7,11,21,30,39],tch:11,tcp:9,tcp_nodelai:11,tell:[18,25],telugu:11,templat:[11,12,20,21,25,26,38],templates_path:11,tempor:30,term:[8,11,18,30],termin:[11,21,42],test:[2,8,10,11,21,23,24,26,39,41],texliv:2,text:[0,4,11,25,30],textstyl:30,tfrac:30,than:[11,15,30,33],thei:[11,12,15,21,22,30,35],them:[12,15,21,27,28,30,38],theme:[11,15,26,27,31],theme_arg:11,themselv:22,thepiratebai:11,therefor:[7,30],theses:21,thi:[4,5,7,8,9,10,11,12,13,15,17,18,20,21,22,23,25,27,28,29,30,31,35,37,38,39,40,41,42],thing:30,think:[24,27,30],third:[30,35],those:[18,20,21,32,35],though:4,thread:12,three:[24,28,30,35],through:[6,8,10,11,15,22,30,31,35],thu:[18,20,23,31,35],thumbnail:25,thumbnail_src:25,thumbnail_xpath:11,tibetian:11,time:[5,11,15,21,23,24,25,30,31,35,39,42],time_rang:[0,31],time_range_support:[25,30],timeout:[3,11,15,25,30,38,40],timerang:42,timestamp:12,tip:[26,30],titl:[11,18,25],title_link:11,title_queri:11,title_xpath:11,tmp:11,to_dict:42,todai:20,togeth:20,token:[11,15,18,20,22],tokyotoshokan:[3,11],too:[5,11,15,30,35],tool:[1,2,4,7,11,17,24,30,32,33,39],top:[11,30],tor:[3,11,33,35],torch:11,torrentfil:25,torrentz2:11,torrentz:[3,11],touch:[8,10,12,15,21],tpb:[3,11],trace:29,track:[33,35],tracker:14,tracker_url_remov:31,trademark:30,traffic:[8,10],train:30,transform:30,transifex:[24,26],transifexrc:32,translat:[3,11,15,26,33],transpar:[21,39],travi:[23,29],tree:[11,21,27],troubleshoot:38,trust:[22,33,35],ttf:2,tube:11,tupl:28,turkish:11,turn:[11,24,29],twice:11,twine:27,twitter:[3,11],two:[12,15,24,30,31],txt:[23,27,30],type:[0,11,15,18,24,25,27,31,32,35,37,39,40],typeerror:42,typic:[1,30],typo:30,ubu1604:39,ubu1804:39,ubu1910:39,ubu2004:39,ubuntu:[2,8,10,11,12,16,30,39],ubuntuwiki:11,uds:8,uesr:18,ugli:[17,30],uid:[12,21],ukrainian:11,ullamco:30,ultrasecretkei:[11,15],unam:[11,39],unc:11,uncom:[11,15],uncommon:24,uncyclopedia:11,under:[11,21,22,25],understand:[17,30],unfortun:24,unicod:26,uninstal:[27,38],unit:[12,24,27,37,40,41],unit_test:[27,29],univers:11,unix:[8,10,12],unknown:[35,37,40],unless:22,unlik:35,unspecifi:25,unsplash:[3,11],untouch:27,unwant:7,updat:[6,9,11,15,24,26,33,37,40,41],update_dev_packag:29,update_packag:16,upload:27,upstream:12,urbandictionari:11,url:[0,8,9,10,11,13,14,15,21,24,25,27,35,38,39,40,41,42],url_queri:11,url_xpath:11,urlencod:25,usag:[7,8,10,21,27,30,37,39,40,41,42],usagelimit:11,use:[2,5,7,8,10,11,12,13,15,20,21,22,24,25,27,29,30,33,34,37,38,39,40,41,42],use_default_set:[6,11,38],used:[8,10,15,18,23,24,25,30,33,35,38],useful:[15,38],user:[5,6,8,10,12,14,15,18,21,22,24,25,30,33,35,38,41],useradd:[11,37,40],userag:5,useragent_suffix:[11,15],usernam:11,uses:[12,15,25,30,35],using:[4,5,8,9,10,11,12,15,19,21,24,27,29,30,32,33],usr:[5,8,10,11,12,21,37,38,40,41],usual:[19,23,35],utf8:11,utf:[11,12,30,38,39],util:[1,2,5,7,8,10,11,13,21,27,33],uvys6brhkhudff5cqbjonsdsrn8h0scbzinsrdgnvdpz7iezhvevart3yvghokha:15,uwsgi:[1,2,6,9,10,11,16,21,33,41],uwsgi_param:10,uwsgi_pass:10,uwsgisocket:8,uzcko:11,valid:[25,29,31],valu:[0,9,10,11,18,20,25,30,31,38],variabl:[9,15,25,27,30,40],variant:30,variou:[24,28],vassal:12,vector:30,vendor:24,veniam:30,venv3:23,venv:[2,11,29],verbos:[11,27,38],veri:38,verifi:25,vero:30,version:[11,14,23,30,37,40],via:[8,10,12,17,36],video:[3,11,42],vietnames:11,view:[26,35],viewbox:30,vim:[0,14,31],vim_hotkei:14,vimeo:[3,11],virtual:[8,10],virtualenv:[2,11,12,21,23,27,29,41],visist:30,visit:[11,30,35],vlaam:11,voat:[3,11],volum:9,voluptua:30,vpn:35,vulner:35,wai:[12,15,18,20,24,25,30,35],wait:[15,20],want:[11,15,22,23,24,27,30,31,35,38,39],wantedbi:[37,40],warn:[2,8,10,30,39],watch:24,web:[4,5,11,15,17,18,21,25,27,37,39,41],web_url:11,webapp:[11,12,15,23,27,30],webcrawl:5,webkr:11,webresourc:11,webserv:10,websit:0,webui:4,week:42,weight:[11,15,30],weigth:[3,15],weird:24,welcom:[8,10],well:30,welsh:11,were:[20,22,23],werkzeug:27,wget:[37,40],what:[11,12,21,30,39],whatev:[27,39],whe7ib:11,wheel:11,when:[2,8,11,14,15,18,23,28,29,30,35,42],where:[4,5,11,15,18,21,30],whether:[29,35],which:[1,5,8,10,11,12,15,17,18,20,21,22,24,25,27,30,31,33,35,37,40],whl:27,who:[12,17,18,20,35],whole:[8,28],why:[30,33,34],wide:24,widen:30,width:30,wikang:11,wiki:[0,3,10,11,15,20,22,30,39],wikia:11,wikibook:[3,11],wikidata:[3,11],wikinew:[3,11],wikipedia:[3,11,15,31,36],wikiquot:[3,11],wikisourc:[3,11],wikivers:[3,11],wikivoyag:[3,11],wiktionari:[3,11],wish:15,within:[27,30],without:[2,9,11,15,18,25,33,35,42],wolframalpha:[3,11],wolframalpha_api:11,wolframalpha_noapi:[3,11],won:[15,23],word:[11,28,30,31],word__defin:11,word__nam:11,work:[10,11,15,18,19,24,25,27,29,35,41],worker:12,working_dir:18,workingdirectori:[37,40],world:[24,30,35],worri:23,worth:[12,35],would:[11,21,22],wrap:[10,19],write:42,written:21,wrong:27,wsgi:[10,12],www1x:[3,11],www2:11,www:[2,8,11,30,32,39],wysiwyg:24,xapian:4,xdg:[11,27],xetex:2,xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd:11,xml:30,xmln:30,xpath:[3,11],xss:[11,15],xxxx:30,xzf:[37,40],yaci:11,yahoo:[3,11],yahoo_new:[3,11],yandex:[3,11],year:[23,31,42],yes:[37,40],yet:[24,25,27],ygg:[3,11],yggtorrent:[3,11],yhn:[3,11],yml:[3,6,8,9,10,11,12,13,17,20,21,27,28,29,31,33,38,40,41],you:[1,2,4,5,7,8,9,10,11,12,15,18,19,20,21,24,27,29,30,31,33,35,36,37,38,39,40,41],your:[2,4,5,7,8,9,10,11,12,13,14,15,17,18,19,23,24,26,27,30,33,37,38,39,40,41],your_morty_proxy_kei:[11,13],yourself:24,youtub:[3,11],youtube_api:11,youtube_noapi:[3,11],yyyi:30,zero:20,zh_tw:11,zlib1g:[2,11],zzzz:30},titles:["Administration API","Architecture","Buildhosts","Engines","Recoll","How to protect an instance","Administrator documentation","Installation","Install with apache","Docker installation","Install with nginx","Step by step installation","uwsgi","How to setup result proxy","Plugins builtin","settings.yml","How to update","Searx admin interface","Running shell commands to fetch results","Blog","Preparation for offline engines","Developing in Linux containers [202006]","Limit access to your searx engines","Introducing Python 3 support","How to contribute","Engine overview","Developer documentation","Makefile Targets","Plugins","Development Quickstart","reST primer","Search API","Translation","Welcome to searx","User documentation","Why use a private instance?","Search syntax","utils/filtron.sh","Tooling box utils/*","utils/lxc.sh","utils/morty.sh","utils/searx.sh","utils/standalone_searx.py"],titleterms:{"202006":21,"abstract":21,"default":[3,14,25],"function":21,"public":[8,9,10,35],"return":25,The:[8,10,21,24],about:[30,35],access:22,acknowledg:[17,18,20,22,23],activ:27,admin:17,administr:[0,6],admonit:30,aka:30,alltogeth:12,anchor:30,apach:8,api:[0,31],architectur:1,archlinux:21,argument:25,articl:[2,30],ascii:30,audienc:21,bar:0,basic:30,bibliograph:30,block:30,blog:19,box:[5,38],bug:23,build:[2,9,24,27,29,30],buildhost:[2,39],built:[3,14],builtin:14,bullet:30,check:11,clean:[24,27],code:[24,25,30],command:[9,18,38,39],commit:24,common:38,compil:29,conclus:35,configur:[0,3,4,5,11,14,25],consequ:35,contain:21,content:[2,5,8,9,10,11,12,15,21,24,25,27,30],contribut:24,creat:[11,24,37,40],csv:30,data:0,debian:8,debug:29,definit:30,depend:11,deploi:24,design:24,develop:[20,21,26,29],direct:24,disabl:[8,10],distributor:12,doc:[2,24,27],docker:9,document:[6,24,26,34],doe:35,dot:30,drop:27,emb:0,engin:[3,15,18,20,21,22,25],entri:28,environ:[27,29,30,38],equat:30,exampl:[4,25,28,30,36],ext:30,extern:28,extlink:30,fact:23,featur:33,fetch:18,field:30,figur:30,file:[25,30],filtron:[5,37],first:7,flat:30,foo:30,fork:27,found:23,fulli:21,fun:23,further:[1,3,5,8,10,12,13,14,15,28,30,31,37,39,40,41],gate:30,gener:[3,25,30],gentlemen:21,get:0,github:24,global:15,good:24,graphviz:30,grid:30,hackabl:24,head:30,hello:30,highlight:30,hlist:30,hook:28,horizont:30,how:[5,13,16,23,24,29,35],http:[8,10],hyperlink:30,imag:[9,25,30],info:4,init:32,inlin:30,instal:[7,8,9,10,11,17,37,39,40,41],instanc:[5,9,35],interfac:17,internet:[8,10],intersphinx:30,introduc:23,javascript:29,kernel:30,kiss:30,latex:30,layout:8,limit:22,line:[9,18,30],link:30,lint:2,linux:21,list:30,liter:30,live:[24,27],locat:15,log:[8,10],lxc:39,make:[25,27,29],makefil:[27,29],map:25,markup:30,math:30,matter:30,morti:40,motiv:21,name:30,need:2,nest:30,next:[18,20,22],nginx:10,note:30,offlin:20,ordinari:30,origin:12,overrid:25,overview:[25,37,39,40,41],packag:11,page:27,paragraph:30,paramet:31,pars:25,pass:25,plugin:[14,28],point:28,post:28,pre:28,prepar:20,prime:24,primer:30,privaci:[24,35],privat:[22,35],process:30,product:21,progress:20,project:32,protect:[5,35],proxi:[8,13],pybuild:27,pyenv:29,pylint:27,python:[23,27],quickstart:29,quot:30,read:[1,3,5,8,10,12,13,14,15,28,30,31,37,39,40,41],readabl:30,recol:4,ref:30,regist:28,render:30,request:[5,25],requir:32,respons:0,rest:[24,30],restart:8,result:[13,18,25,28],revers:8,role:30,rout:5,run:[18,23,27,29,39],sampl:[0,5],script:[2,7],search:[0,28,31,36],searx:[9,10,11,17,21,22,23,33,35,39,41],see:35,server:[8,10],servic:8,set:[3,15,25],setup:[13,27,29,38,39],shell:[2,18],sidebar:30,simpl:30,site:10,skill:30,smart:30,soft:30,some:2,sourc:[24,29],space:30,special:3,specif:30,sphinx:[2,30],standalone_searx:42,start:21,step:[11,18,20,22],structur:30,style:29,substitut:30,suit:[21,39],support:[8,23],svg:30,syntax:[30,36],tab:30,tabl:30,target:[27,29],templat:30,test:[27,29],theme:29,thi:2,through:5,time:[3,14],tip:29,titl:30,tool:[5,38],torrent:25,transifex:32,translat:[24,32],truth:30,unicod:30,unit:29,updat:[7,16,32],upgrad:23,upstream:27,url:30,use:35,use_default_set:15,user:[11,34,37,40],using:[23,35],usual:21,util:[37,38,39,40,41,42],uwsgi:[8,12],video:25,view:30,welcom:33,what:35,why:35,work:[2,21],wrap:21,yml:[15,25],you:23,your:[21,22,28,29]}}) \ No newline at end of file diff --git a/utils/index.html b/utils/index.html index 292e4fa4..5ea3742c 100644 --- a/utils/index.html +++ b/utils/index.html @@ -138,6 +138,7 @@ reverse proxy for filtron on all containers of the # --------- # SEARX_INTERNAL_URL="127.0.0.1:8888" +# SEARX_SETTINGS_TEMPLATE="${REPO_ROOT}/utils/templates/etc/searx/use_default_settings.yml" # Only change, if you maintain a searx brand in your searx fork. # GIT_BRANCH="${GIT_BRANCH:-master}" diff --git a/utils/searx.sh.html b/utils/searx.sh.html index 7e0018de..08134efd 100644 --- a/utils/searx.sh.html +++ b/utils/searx.sh.html @@ -80,7 +80,7 @@ into this user account. The installation is described in chapter (Common commands & environment):

    usage::
       searx.sh shell
    -  searx.sh install    [all|user|searx-src|pyenv|uwsgi|packages|buildhost]
    +  searx.sh install    [all|user|searx-src|pyenv|uwsgi|packages|settings|buildhost]
       searx.sh update     [searx]
       searx.sh remove     [all|user|pyenv|searx-src]
       searx.sh activate   [service]