mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
10 lines
243 B
Text
10 lines
243 B
Text
|
#!/usr/bin/env sh
|
||
|
. '${opwen_webapp_envs}'
|
||
|
|
||
|
'{{lokole_venv}}/bin/gunicorn' \\
|
||
|
--timeout='300' \\
|
||
|
--workers='${opwen_webapp_workers}' \\
|
||
|
--bind='unix:{{lokole_domain_socket}}' \\
|
||
|
--log-level='error' \\
|
||
|
'opwen_email_client.webapp:app'
|