91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

阿里云ECS服務器部署django的方法

發布時間:2020-08-30 09:01:07 來源:腳本之家 閱讀:147 作者:fengyu09 欄目:開發技術

參考

服務器安裝的是Centos 系統。

uwsgi是使用pip安裝的。

nginx是使用yum install nginx安裝。

python 2.7, mysql 5.5使用 yum安裝。

它們之間的邏輯關系如下:

the web client <-> the web server <-> the socket <-> uwsgi <-> Django

uswgi負責從Django拿內容,通過socket傳給 web server如nginx, 最后顯示到 網頁瀏覽器。

在django的項目下,建文件 uswgi.ini,可以不用在uswgi后面寫一串選項。

# uwsgi.ini file
[uwsgi]
 
# Django-related settings
# the base directory (full path)
chdir   = /var/www/html/
# Django's wsgi file
module   = app.wsgi:application
# process-related settings
# master
master   = true
# maximum number of worker processes
processes  = 10
# the socket (use the full path to be safe
#socket   = 127.0.0.1:8001
socket = /tmp/site.sock
# ... with appropriate permissions - may be needed
chmod-socket = 666
# clear environment on exit
vacuum   = true
process = 4
threads = 2

# Django's wsgi file這個對應你自己Django項目的就好。 chdir就是Django的所在目錄,和manage.py同一目錄。

其他可以默認。

同樣建立nginx.conf

# nginx.conf
 
# the upstream component nginx needs to connect to
upstream django {
 server unix:///tmp/site.sock; # for a file socket
 #server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}
 
# configuration of the server
server {
 # the port your site will be served on
 listen  80;
 # the domain name it will serve for
 server_name demo.mmm.com; # substitute your machine's IP address or FQDN
 charset  utf-8;
 
 # max upload size
 client_max_body_size 128M; # adjust to taste
 
 # Django media
 location /media {
  alias /var/www/html/media; # your Django project's media files - amend as required
 }
 
 location /static {
  alias /var/www/html/static; # your Django project's static files - amend as required
 }
 
 # Finally, send all non-media requests to the Django server.
 location / {
  uwsgi_pass django;
  include  /var/www/html/uwsgi_params; # the uwsgi_params file you installed
 }
}

uwsgi_pass django; 中的django和upstream django 相對應。

兩頭的socket名字要一樣。uwsgi里要改sock的權限為666,默認的664,nginx會連不上,在/var/log/nginx/error.log里可以看到connect is denied。

據說使用socket比端口要好,注意unix://這個前綴,加上后面sock的路徑,是3個///,看起來不好看。

無論使用socket還是TCP端口,uwsgi的socket和nginx的server值要對應,否則沒法接通路徑。

server_name demo.mmm.com; 看文章時,把server_name這個詞看成域名,給修改掉,結果nginx啟動失敗。可以用域名或者IP。

ln -s /var/www/html/nginx.conf /etc/nginx/conf.d/

鏈接后,這樣在conf.d 配置目錄里會有Django下建立的nginx.conf,比較方便。

uwsgi_params文件在/etc/nginx下面有,老外說是拷貝到Django目錄下,不知道直接使用會有什么區別。

最后:

使用chkconfig nginx on 把nginx設置成自啟動服務。

在/etc/rc.local里加一行 uwsgi /var/www/html/uwsgi.ini --uid www --gid www

我沒加uid和gid,以root運行uwsgi會被警告的。

原來是打算用apache的,所以有個/var/www/html目錄。mod-python報錯后,不知道怎么處理。

系統自帶Python2.6,mod-python就是調用的2.6。

nginx不能從uwsgi獲得數據時,就會輸出nginx的默認頁面。還會輸出 Bad Gateway提示。

linux最大的麻煩是,程序和配置文件分散,裝好一個程序,都不知道它在哪里。

以上這篇阿里云ECS服務器部署django的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

长乐市| 陕西省| 临沂市| 濉溪县| 盐津县| 酒泉市| 盐源县| 白玉县| 普格县| 江都市| 汝州市| 祁连县| 正定县| 资阳市| 江油市| 乌拉特中旗| 安塞县| 三门县| 耒阳市| 克什克腾旗| 雷山县| 宝应县| 贵溪市| 庆阳市| 闽侯县| 瑞安市| 华蓥市| 科尔| 普陀区| 镇远县| 定州市| 建阳市| 祁门县| 梁山县| 临泽县| 大渡口区| 乃东县| 富平县| 黄梅县| 泰安市| 云林县|