Overview

Gunicorn 又稱綠色獨角獸 (源於 icon) 是 Python Web 服務器網關接口 HTTP 服務器。Gunicorn 服務器與許多 Web 框架廣泛兼容,並且實現簡單,佔用服務器資源少且速度相當快。此外我們也能選擇使用同步或非同步機制部署你的程式,除此之外也能設定 cpu 的 worker 數量或是 thread 處理。

Installation

pip install gunicorn

Usage

啟動

gunicorn --workers 8 --bind 0.0.0.0:5000 --daemon run:app

參數 :

停止

killall gunicorn

<aside> ‼️ Required package psmisc, use apt install psmisc to install.

</aside>

Reference

Gunicorn - Python WSGI HTTP Server for UNIX

Gunicorn - WSGI server - Gunicorn 20.1.0 documentation