穩定,併發,效益,html
前端
DEBUG = Falsepython
將再也不提供靜態文件服務nginx
# 填寫你本身的ip和域名
ALLOWED_HOSTS = ["www.youkou.site", "39.108.191.165", "localhost", "127.0.0.1"]
# 此處設置能夠訪問服務器的IP地址,*爲容許因此地址web
生產環境中的項目入口 ajax
# 修改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()
# 在xshell中生成requirements.txt文件(將項目中安裝的包,存放到requirements.txt文件中)
pip freeze > requirements.txt
把安裝好的包打包冷凍
把 requirements.txt 複製到生產環境下
在部署的環境下
將項目本地目錄上傳至服務器(能夠是阿里雲ECS服務器)
方法一:
在阿里雲服務器上,使用unzip 解壓項目壓縮文件
unzip 你的項目壓縮文件.zip
rz 只能上傳文件,因此要壓縮,上傳完成後在報備是解壓,
方法二:
可使用提供ssh鏈接的工具,將項目目錄發送到服務器家目錄中
# 例如
scp -r /home/Conner/MyBlog root@服務器IP:~/ -p 22
建立虛擬環境
# 虛擬環境名,隨意命名
# 進入到虛擬環境
workon dj_pro
# 安裝包
# 須要把requirements.txt文件中的fdfs-client-py刪除
pip install -r requirements.txt
# 安裝fdfs_client.zip
pip install fdfs_client.zip
# 進入到虛擬環境
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 提供的動態文件服務
在項目根目錄中建立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 進去
# 啓動uwsgi
在虛擬環境下,
uwsgi --ini uwsgi_conf.ini &
# 中止uwsgi
uwsgi --stop uwsgi.pid
killall -9 uwsgi
# 安裝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
To stop
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
sudo systemctl restart nginx
sudo systemctl disable nginx
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
// 在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', ]