潭州課堂25班:Ph201805201 django 項目 第四十四課 項目部署 (課堂筆記)

項目部署

穩定,併發,效益,html

1、Django配置

1.settings.py配置

複製全局settings.py配置文件,建立一個副本命名爲MyBlog/pro_settings.py,修改DEBUG爲False。前端

DEBUG = Falsepython

將再也不提供靜態文件服務nginx

 

# 填寫你本身的ip和域名
ALLOWED_HOSTS = ["www.youkou.site", "39.108.191.165", "localhost", "127.0.0.1"]
# 此處設置能夠訪問服務器的IP地址,*爲容許因此地址web

 

 生產環境中的項目入口  wsgi.pyajax

2.wsgi.py配置

# 修改MyBlog/wsgi.py文件shell

import osdjango

from django.core.wsgi import get_wsgi_application服務器

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MyBlog.pro_settings')cookie

application = get_wsgi_application()

 

 

3.生成requirements.txt文件

# 在xshell中生成requirements.txt文件(將項目中安裝的包,存放到requirements.txt文件中)

pip freeze > requirements.txt

把安裝好的包打包冷凍

把 requirements.txt 複製到生產環境下

在部署的環境下

 

 

4.上傳至服務器

將項目本地目錄上傳至服務器(能夠是阿里雲ECS服務器)

方法一:

  • 可使用xshell鏈接阿里雲服務器,經過rz命令將本地項目目錄壓縮爲zip以後,上傳至服務器

  • 在阿里雲服務器上,使用unzip 解壓項目壓縮文件

  • unzip 你的項目壓縮文件.zip

 

  rz 只能上傳文件,因此要壓縮,上傳完成後在報備是解壓,

 

方法二:

  • 可使用提供ssh鏈接的工具,將項目目錄發送到服務器家目錄中

  • scp -r 你的項目目錄 服務器用戶名@服務器IP:~/ -p ssh服務端口

# 例如
scp -r /home/Conner/MyBlog root@服務器IP:~/ -p 22

 

5.安裝python3以及虛擬環境

  • 安裝python三、virtualwrapper,請查看官方文檔,步驟略。

  • 建立虛擬環境

# 虛擬環境名,隨意命名

mkvirtualenv dj_pro

 

安裝項目相關包

# 進入到虛擬環境
workon dj_pro
# 安裝包
# 須要把requirements.txt文件中的fdfs-client-py刪除
pip install -r requirements.txt
# 安裝fdfs_client.zip
pip install fdfs_client.zip

 

uwsg 服務器,只要是 python 開發的都 能夠用這種協議,

6.uwsgi安裝測試

# 進入到虛擬環境
workon dj_pro
# 安裝uwsgi
pip install uwsgi
進入虛擬環境安裝

 



測試uwsgi是否安裝成功:


# 測試py文件

# test.py
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World"] # python3
#return ["Hello World"] # python2

 

 

運行uwsgi:

cd 到  test.py 的目錄下

uwsgi --http :8000 --wsgi-file test.py

測試uwsgi運行是否正常:

curl 127.0.0.1:8000

uwsgi 提供的動態文件服務 

 

 

7.uwsgi配置

在項目根目錄中建立deploy目錄,新建uwsgi_conf.ini文件。

[uwsgi]
# 使用nginx鏈接時使用,Django程序所在服務器地址
# 選擇內網IP和端口    ip a
socket=172.18.168.123:8000

# 項目根目錄  pwd
chdir=/home/Conner/MyBlog

#項目中wsgi.py文件的相對目錄
wsgi-file=MyBlog/wsgi.py

 

# 進程數
processes=2

# 線程數
threads=2

# uwsgi服務器的角色
master=True

# 存放進程編號的文件
pidfile=uwsgi.pid

# 日誌文件,由於uwsgi能夠脫離終端在後臺運行,日誌看不見。之前的runserver是依賴終端的
daemonize=logs/uwsgi.log

# 指定虛擬環境所在目錄,不能填相對目錄
virtualenv=/home/Conner/.virtualenvs/dj_pro

虛擬環境目錄的查找,

cd  到家目錄,ls -al 找到 .virtualenvs 文件

以後 cd 進去

 

 

 

 

 

8.啓動uwsgi

切換到deploy目錄中,建立logs文件夾,用於存放日誌文件

 

# 啓動uwsgi

在虛擬環境下,
uwsgi --ini uwsgi_conf.ini &

# 中止uwsgi
uwsgi --stop uwsgi.pid

 killall -9 uwsgi

2、在Ubuntu 18.04中安裝配置Nginx

1.Installing Nginx

提供靜態文件服務,正向代理,可讓爲他是個中間件,

# 安裝nginx
sudo apt update -y
sudo apt install nginx -y

 

# 啓動nginx,查看啓動狀態,若是啓動狀態未active,則表明啓動成功
sudo systemctl start nginx && sudo systemctl status nginx

# 默認開啓80端口,能夠查看一下是否提供web服務
curl -I 127.0.0.1

2.nginx 管理命令

To stop your web server, type:

# 中止

sudo systemctl stop nginx

To start the web server when it is stopped, type:

# 啓動

sudo systemctl start nginx

To stop and then start the service again, type:

# 重啓

sudo systemctl restart nginx

If you are simply making configuration changes, Nginx can often reload without dropping connections. To do this, type:

# 加載配置,修改配置以後要從新加載 

sudo systemctl reload nginx

 

To stop and then start the service again, type:

  sudo systemctl restart nginx

 

If you are simply making configuration changes, Nginx can often reload without dropping connections. To do this, type:

  sudo systemctl reload nginx

 

By default, Nginx is configured to start automatically when the server boots. If this is not what you want, you can disable this behavior by typing:

  sudo systemctl disable nginx

To re-enable the service to start up at boot, you can type:

  sudo systemctl enable nginx

 

3.nginx配置

 

建立/etc/nginx/conf_d/nginx_dj_pro.conf文件

 

upstream MyBlog {
    # 此處爲uwsgi運行的ip地址和端口號
    server 172.18.168.123:8000;
}

server {
    # 監聽端口    
    listen      80;

    # 服務器域名或者ip地址
    server_name 39.108.191.165 .youkou.site;

    # 編碼
    charset     utf-8;
    
    # 文件最大上傳大小
    client_max_body_size 75M;
    
    # 媒體文件
    location /media  {
        alias /home/Conner/MyBlog/media;
    }
    
    # 靜態文件
    location /static {
        alias /home/Conner/MyBlog/static;
    }
    
    # 主目錄
    location / {
        uwsgi_pass  MyBlog;
        include    /etc/nginx/uwsgi_params;
    }
}

  把這個配置文件複製到以下目錄

sudo cp nginx_dj_pro.conf /etc/nginx/conf.d/

修改 nginx.conf 文件的 user 

wq! 退出 

# 測試nginx配置文件是否正確,
sudo nginx -t -c /etc/nginx/nginx.conf
# 打印以下內容,則沒問題
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

 


# 從新加載配置 sudo nginx -s reload -c /etc/nginx/nginx.conf

  

3、Troubleshooting

部分同窗會出現開啓'django.middleware.csrf.CsrfViewMiddleware'中間件以後,前端使用ajax發起post請求,出現403異常。

可能緣由一:js中沒有攜帶X-CSRFToken頭

// 在js文件中添加這幾個方法

// get cookie using jQuery
function getCookie(name) {
let cookieValue = null;
if (document.cookie && document.cookie !== '') {
let cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) === (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}

function csrfSafeMethod(method) {
// these HTTP methods do not require CSRF protection
return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
}

// Setting the token on the AJAX request
$.ajaxSetup({
beforeSend: function (xhr, settings) {
if (!csrfSafeMethod(settings.type) && !this.crossDomain) {
xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
}
}
});

 

可能緣由二:django沒有設置csrftoken cookie

# 使用中間件強制django設置csrftoken cookie
# 建立apps/users/middleware.py文件

from django.utils.deprecation import MiddlewareMixin
from django.middleware.csrf import get_token


class MyMiddleware(MiddlewareMixin):
def process_request(self, request):
csrf_token = get_token(request)

 

# 在dj_pre_class/pro_settings.py中

MIDDLEWARE = [ # 添加自定義中間件 'users.middleware.MyMiddleware', ]

相關文章
相關標籤/搜索