How to use Django with Gunicorn | Django documentation | Django (djangoproject.com)
How to use Django
with Gunicorn
- Gunicorn(Green Unicorn)은 UNIX를 위한 파이썬 WSGI 서버이다.
- Gunicorn은 python -m pip install gunicorn으로 바로 설치할 수 있다.
Django를 generic WSGI 애플리케이션으로써
Gunicorn에서 실행하는 법
- pip로 Gunicorn을 설치하고 나면, Gunicorn 서버 프로세스를 시작하는 gunicorn 명령어를 사용할 수 있다.
- 가장 간단한 방법은 gunicorn에 WSGI application 객체가 있는 모듈의 위치를 전달하는 것이다.
- 예를 들면 다음과 같다.
gunicorn myproject.wsgi
- 더 많은 정보를 원한다면, Gunicorn의 배포 문서를 확인할 것!
- Deploying Gunicorn — Gunicorn 20.1.0 documentation
'Computer Science > BackEnd' 카테고리의 다른 글
FastAPI를 이용한 기본적인 CRUD API (0) | 2023.04.13 |
---|---|
[에러 해결] AttributeError: WebDriver object has no atribute find_element_by_class (0) | 2023.03.27 |
장고 WSGI를 이용하여 배포하기 | 장고 공식 문서 번역 (0) | 2022.11.25 |
장고 배포하기(WSGI, Gunicorn, ASGI) | 장고 공식 문서 번역 (0) | 2022.11.25 |
Django | SQL 쿼리 로그로 Django QuerySet 이해하기 (0) | 2022.10.29 |