Skip to content

Commit

Permalink
Merge pull request #330 from inbo/fix-geojson
Browse files Browse the repository at this point in the history
Fix geojson
  • Loading branch information
mainlyIt authored Feb 4, 2025
2 parents 50ec745 + 5345e4a commit c172641
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,16 @@ echo "Load waarnemingen observation data via: python manage.py load_waarnemingen

# Start Gunicorn
echo "Starting Gunicorn..."
gunicorn --workers 4 \
echo "Starting Gunicorn..."
gunicorn --workers 3 \
--worker-class gthread \
--threads 4 \
--worker-connections 1000 \
--timeout 3600 \
--timeout 1800 \
--graceful-timeout 300 \
--keep-alive 65 \
--max-requests 500 \
--max-requests 1000 \
--max-requests-jitter 50 \
--worker-tmp-dir /dev/shm \
--log-level info \
--access-logfile /workspaces/vespadb/logs/gunicorn-access.log \
--error-logfile /workspaces/vespadb/logs/gunicorn-error.log \
--bind 0.0.0.0:8000 \
vespadb.wsgi:application &

Expand Down

0 comments on commit c172641

Please sign in to comment.