Skip to content

Commit

Permalink
Merge pull request #20 from resum-ai/feat/login
Browse files Browse the repository at this point in the history
fix: gunicorn worker timeout 방지를 위한 time 설정 및 효율성 향상을 위한 worker 수 설정
  • Loading branch information
yjoonjang authored Mar 24, 2024
2 parents 01a4308 + 69e0dfc commit 7c8e0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
build:
context: ./
dockerfile: Dockerfile.prod
command: gunicorn resumai.wsgi:application --bind 0.0.0.0:8000
command: gunicorn resumai.wsgi:application --bind 0.0.0.0:8000 -w 16 --threads 8 -t 300
environment:
DJANGO_SETTINGS_MODULE: resumai.settings.prod
DJANGO_ENV: production
Expand Down

0 comments on commit 7c8e0ec

Please sign in to comment.