mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-04 00:17:06 +00:00
trying 1 gunicorn worker
This commit is contained in:
parent
5aab1deeec
commit
1d86202b6f
@ -1,15 +1,6 @@
|
||||
from daemon import app
|
||||
import auth, utils
|
||||
|
||||
from werkzeug.middleware.proxy_fix import ProxyFix
|
||||
|
||||
app.wsgi_app = ProxyFix(
|
||||
app.wsgi_app, x_for=1, x_proto=1, x_host=1, x_prefix=1
|
||||
)
|
||||
|
||||
env = utils.load_environment()
|
||||
auth_service = auth.AuthService()
|
||||
|
||||
app.logger.addHandler(utils.create_syslog_handler())
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
@ -100,7 +100,7 @@ export LC_TYPE=en_US.UTF-8
|
||||
|
||||
source $venv/bin/activate
|
||||
export PYTHONPATH=$(pwd)
|
||||
exec gunicorn -b localhost:10222 -w 2 wsgi:app
|
||||
exec gunicorn -b localhost:10222 -w 1 wsgi:app
|
||||
EOF
|
||||
chmod +x $inst_dir/start
|
||||
cp --remove-destination conf/mailinabox.service /lib/systemd/system/mailinabox.service # target was previously a symlink so remove it first
|
||||
|
Loading…
Reference in New Issue
Block a user