mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-11 01:27:17 +00:00
first attempt
This commit is contained in:
parent
91fc74b408
commit
af54696b62
6
management/wsgi.py
Normal file
6
management/wsgi.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
from daemon import app
|
||||||
|
|
||||||
|
app.logger.addHandler(utils.create_syslog_handler())
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run(port=10222)
|
@ -99,7 +99,8 @@ export LANG=en_US.UTF-8
|
|||||||
export LC_TYPE=en_US.UTF-8
|
export LC_TYPE=en_US.UTF-8
|
||||||
|
|
||||||
source $venv/bin/activate
|
source $venv/bin/activate
|
||||||
exec python $(pwd)/management/daemon.py
|
cd $(pwd)/management
|
||||||
|
exec gunicorn -b localhost:10222 -w 2 wsgi:app
|
||||||
EOF
|
EOF
|
||||||
chmod +x $inst_dir/start
|
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
|
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