1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pgadmin_ynh.git synced 2024-09-03 19:56:38 +02:00
pgadmin_ynh/conf/uwsgi.ini

28 lines
551 B
INI
Raw Normal View History

2017-11-16 21:10:21 +01:00
[uwsgi]
# Who will run the code
2020-01-10 11:47:09 +01:00
uid = __APP__
gid = __APP__
2017-11-16 21:10:21 +01:00
# Number of workers
workers = 1
# The right granted on the created socket
chmod-socket = 666
# Plugin to use and interpretor config
single-interpreter = true
master = true
2018-11-07 19:30:34 +01:00
plugin = python3
2017-11-16 21:10:21 +01:00
# Manage the subpath
manage-script-name = true
mount = __PATH__=pgAdmin4.py
# Virtualenv and python path
2024-01-30 11:36:14 +01:00
virtualenv = __INSTALL_DIR__
pythonpath = __INSTALL_DIR__
chdir = __INSTALL_DIR__/lib/python__PYTHON_VERSION__/site-packages/pgadmin4
2017-11-16 21:10:21 +01:00
# The variable holding flask application
2018-11-07 19:30:34 +01:00
callable = app