Add a note about sys.executable potentially needing "help" under WSGI runners.

See #5340.
This commit is contained in:
Dave Page 2022-10-03 13:35:31 +01:00
parent 406119d96c
commit b8ec021a07

View File

@ -300,3 +300,12 @@ Then, configure NGINX:
include uwsgi_params;
uwsgi_pass unix:/tmp/pgadmin4.sock;
}
Additional Information
----------------------
.. note:: pgAdmin will spawn additional Python processes from time to time, and
relies on the *sys.executable* variable in Python to do this. In some cases,
you may need to override that value to ensure the correct interpreter is
used, instead of the WSGI host process. For example, uWSGI offers the
*--py-sys-executable* command line option to achieve this.