用 Gunicorn 執行 Django 應用程式

  1. 安裝 gunicorn

    pip install gunicorn

  2. 從 django 專案資料夾(manage.py 所在的資料夾),執行以下命令以使用 gunicorn 執行當前的 django 專案

    gunicorn [projectname].wsgi:application -b 127.0.0.1:[port number]

    你可以使用 --env 選項設定載入設定的路徑

    gunicorn --env DJANGO_SETTINGS_MODULE=[projectname].settings [projectname].wsgi

    或使用 -D 選項作為守護程序執行

  3. 成功啟動 gunicorn 後,控制檯中將顯示以下行

    Starting gunicorn 19.5.0

    Listening at: http://127.0.0.1:[port number] ([pid])

    ....(有關 gunicorn 伺服器的其他資訊)