본문 바로가기
파이썬

파이썬 Gunicorn 구성 파일은 어디에 있습니까?

by º기록 2021. 2. 9.
반응형

gunicorn 문서는 구성 파일 편집에 대해 이야기하지만 그것이 어디에 있는지 모르겠습니다.

아마도 간단한 대답 일 것입니다. :) 저는 Amazon Linux AMI에 있습니다.

 

해결 방법

 

대답은 gunicorn의 문서에 있습니다.


.ini 또는 python 스크립트를 사용하여 구성 파일을 지정할 수 있습니다.

예를 들어, django-skel 프로젝트에서

"""gunicorn WSGI server configuration."""
from multiprocessing import cpu_count
from os import environ


def max_workers():    
    return cpu_count()


bind = '0.0.0.0:' + environ.get('PORT', '8000')
max_requests = 1000
worker_class = 'gevent'
workers = max_workers()

그리고 다음을 사용하여 서버를 실행할 수 있습니다.

gunicorn -c gunicorn.py.ini project.wsgi

project.wsgi는 wsgi의 위치에 해당합니다.

 

참조 페이지 https://stackoverflow.com/questions/12063463

 

 

반응형

댓글