Django在Linux上uwsgi 與nginx的問題與解決

阢Lana發表於2020-09-27

1.出現只有weclome to nginx

            多半是是nginx的配置檔案沒有修改,把他的路由註釋掉。

              我是修改錯資料夾了,一直在自己下載而非執行的資料夾修改

 

2.出現502

出現了多次502這裡一一列舉

①在配置檔案中阿里雲要使用內網地址

②路徑寫錯了

 

3.Internal Server error

非多站模式時 vhost = true 和 no-site = true 需要註釋掉,否則後續 nginx 配置檔案中設定的入口檔案則不生效,伺服器會回應 Internal Server error

[uwsgi]
socket = 127.0.0.1:9090
master = true         //主程式
#vhost = true          //多站模式
#no-site = true        //多站模式時不設定入口模組和檔案
workers = 2           //子程式數
reload-mercy = 10     
vacuum = true         //退出、重啟時清理檔案
max-requests = 1000   
limit-as = 512
buffer-size = 30000
pidfile = /var/run/uwsgi9090.pid    //pid檔案,用於下面的指令碼啟動、停止該程式
daemonize = /website/uwsgi9090.log

 

4.找不到路徑或者顯示名字

views 和url的問題

沒有匯入檔案

在url中寫入

from HelloWorld import views

  

相關文章