1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

still doesnt work

This commit is contained in:
Steve Hay 2022-09-05 18:56:39 -04:00
parent 58dde1ce23
commit 5aab1deeec
2 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,14 @@
from management.daemon import app
import utils
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())

View File

@ -99,7 +99,8 @@ export LANG=en_US.UTF-8
export LC_TYPE=en_US.UTF-8
source $venv/bin/activate
exec gunicorn -b localhost:10222 -w 2 management.wsgi:app
export PYTHONPATH=$(pwd)
exec gunicorn -b localhost:10222 -w 2 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