mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
9 lines
287 B
Bash
9 lines
287 B
Bash
#!/usr/bin/env sh
|
|
. '{{lokole_run_directory}}/webapp_secrets.sh'
|
|
|
|
'{{lokole_venv}}/bin/gunicorn' \
|
|
--timeout='300' \
|
|
--workers='{{ [4, ansible_memtotal_mb / 200] | min | int }}' \
|
|
--bind='unix:{{ lokole_domain_socket }}' \
|
|
--log-level='error' \
|
|
'opwen_email_client.webapp:app'
|