溫馨提示×

溫馨提示×

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

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

怎么配置django環(huán)境

發(fā)布時間:2021-12-27 10:13:05 來源:億速云 閱讀:148 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容主要講解“怎么配置django環(huán)境”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“怎么配置django環(huán)境”吧!

環(huán)境說明:

阿里云ECS、Ubuntu、Nginx、Python3、Django、Supervisord

1.更新ubuntu,以免后面安裝出錯

sudo apt updatesudo apt upgrade
  1. 安裝并配置nginx

apt-get install nginx

創(chuàng)建項目目錄,目錄權(quán)限為755

mkdir /opt/web/venv/mysite
chmod 755 web

創(chuàng)建VHost配置 在/etc/nginx/sites-available/下創(chuàng)建服務(wù)器配置文件比如myserver.conf

注:配置文件后綴為.conf

創(chuàng)建軟連接

ln -n /etc/nginx/sites-available/myserver.conf /etc/nginx/sites-enabled/myserver.conf

在配置文件中添加站點信息

django

server {
        listen 80;
        server_name www.mmfinding.cn mmfinding.cn;
        charset utf-8;
        client_max_body_size 75M;

        location /static {
                alias /opt/web/venv/mysite/collected_static;
        }
        location / {
                proxy_pass http://127.0.0.1:9001;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        }

}

3.安裝python3-dev

apt-get install python3-dev

4.虛擬環(huán)境

安裝python3-venv

apt-get install python3-venv

在指定的當(dāng)前目錄('/opt/web/venv')生成虛擬環(huán)境

python3 -m venv .

進(jìn)入虛擬環(huán)境

source bin/activate

退出虛擬環(huán)境

deactivate

5.使用 supervisor 管理進(jìn)程

安裝

apt-get install supervisor

啟動服務(wù)

supervisord -c /etc/supervisor/supervisord.conf

查看 supervisord 是否在運行

ps aux | grep supervisord

增加進(jìn)程管理(/etc/supervisor/conf.d/mysite.conf)

[program:mysite]
command=/opt/web/vevn/bin/gunicorn --worker-class=gevent mysite.wsgi:application -b 127.0.0.1:9001directory=/opt/web/venv/mysite
user=root

到此,相信大家對“怎么配置django環(huán)境”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI