diff --git a/apprise_api/gunicorn.conf.py b/apprise_api/gunicorn.conf.py index ecbe478..bac8829 100644 --- a/apprise_api/gunicorn.conf.py +++ b/apprise_api/gunicorn.conf.py @@ -43,6 +43,10 @@ bind = [ # Workers are relative to the number of CPU's provided by hosting server workers = multiprocessing.cpu_count() * 2 + 1 +# Increase worker timeout value to give upstream services time to +# respond +timeout = 90 + # Logging # '-' means log to stdout. errorlog = '-'