Gunicorn과 함께 django 사용방법

Gunicorn_(‘Green Unicon’)는 UNIX용 Pure-Python WSGI 서버입니다. 종속성이 없으며 “파이프”를 사용하여 설치할 수 있다.

Gunicorn 설치법

“python-mp install gunicorn”을 실행하여 gunicorn을 설치한다. 자세한 내용은`gunicorn documentation`_. 참조.

일반적인 WSGI 애플리케이션으로 Gunicorn에서 Django 실행

When Gunicorn is installed, a gunicorn command is available which starts the Gunicorn server process. The simplest invocation of gunicorn is to pass the location of a module containing a WSGI application object named application, which for a typical Django project would look like:

gunicorn myproject.wsgi

이는 “127.0.0.1:8000”에서 하나의 스레드를 청취하는 하나의 과정을 시작할 것이다. 프로젝트가 Python 경로에 있어야 합니다. 이 명령을 ``관리”와 동일한 디렉토리에서 실행하는 가장 간단한 방법입니다.

자세한 내용은 Gunicorn의 ‘배치 설명서’를 참조하십시오.

Back to Top