uwsgi基本配置

2021-09-12 16:00:43 字數 793 閱讀 7915

[uwsgi]

# django-related settings

# django專案本地埠

socket=0.0.0.0:8000

# 專案根目錄位置

chdi=/root/myplatform

# wsgi.py檔案在專案的中的相對位置

wsgi-file=myplatform/wsgi.py

module=myplatform.wsgi

# 程序設定,無需變動

# master

master=true

# maximum number of worker processes

# 啟動4個uwsgi程序

processes=4

# chmod-socket=664

# clear environment on exit

vacuum=true

pidfile=uwsgi.pid

disable-logging=true

#只輸出錯誤日誌

daemonize=uwsgi.log

#stats=127.0.0.1:9191

chmod-socket=664

#設定socket許可權為664

vacuum=30

#伺服器退出時候自動刪除socket跟pid

async=30

#非同步數

#內部http的socket超時時間

uwsgi模式 uwsgi配置詳解

啟動 uwsgi uwsgi.ini 停止 uwsgi stop uwsgi.pid uwsgi 對外提供 http 服務的埠 the local unix socket file than commnuincate to nginx 用於和 nginx 進行資料互動的埠 socket 127.0....

uwsgi配置詳解

先啟用virtualenv 啟動 uwsgi uwsgi.ini 停止 uwsgi stop uwsgi.pid uwsgi 對外提供 http 服務的埠 the local unix socket file than commnuincate to nginx 用於和 nginx 進行資料互動的埠...

nginx配置 uwsgi 負載均衡配置

nginx靜態檔案配置location static 工程目錄settings下配置靜態檔案 static url static 遷移靜態檔案 python manage.py collectstatic settings目錄中 debug flase allow host nginx 反向 run...