一、配置與安裝nginx環境
成都創新互聯是專業的佳縣網站建設公司,佳縣接單;提供成都網站設計、成都網站建設,網頁設計,網站設計,建網站,PHP網站建設等專業做網站服務;采用PHP框架,可快速的進行佳縣網站開發網頁制作和功能擴展;專業做搜索引擎喜愛的網站,專業的做網站團隊,希望更多企業前來合作!yum install nginx sqlite-devel sqlite zlib-devel openssl-devel MySQL-python unzip mariadb-server -y
cat /etc/nginx/conf.d/py.conf
server { listen 80; server_name 172.24.92.14; client_max_body_size 100M; location /static { alias /opt/BBS/static/; } location /media { alias /opt/BBS/media/; } location / { index index.html; include uwsgi_params; uwsgi_pass 127.0.0.1:9999; uwsgi_param UWSGI_SCRIPT BBS.wsgi; uwsgi_param UWSGI_CHDIR /opt/BBS; } }
重啟生效
systemctl restart nginx
二、配置Python3.6.8
解壓python文件
tar -xvf Python-3.6.8.tar.xz
cd /opt/Python-3.6.8
./configure --prefix=/opt/python-3-6-8/ --enable-optimization
make && make install
配置python 環境變量
vim /etc/profile
export PYTHON_HOME=/opt/python-3-6-8 export PATH=$PYTHON_HOME/bin:$PATH
source /etc/profile
三、安裝Django框架和uwsgi
配置pip安裝源
mkdir /root/.pip/
vim /root/.pip/pip.conf
[global] timeout = 6000 index-url = http://mirrors.aliyun.com/pypi/simple trusted-host = mirrors.aliyun.com
pip 安裝所需要的安裝包
cat uwsgi.txt
asn1crypto==0.24.0 beautifulsoup4==4.6.3 bs4==0.0.1 certifi==2018.4.16 cffi==1.11.5 chardet==3.0.4 Click==7.0 cryptography==2.3.1 Django==1.11.9 Flask==1.0.2 Flask-Cors==3.0.6 gevent==1.3.6 greenlet==0.4.15 idna==2.7 ItsDangerous==1.1.0 Jinja2==2.10 lxml==4.2.6 MarkupSafe==1.0 numpy==1.15.3 Pillow==5.3.0 pycparser==2.18 PyMySQL==0.9.2 pytz==2018.7 requests==2.19.1 selenium==3.141.0 six==1.11.0 urllib3==1.23 virtualenv==16.1.0 Werkzeug==0.14.1 wordcloud==1.5.0 uwsgi
pip3 install -r uwsgi.txt
配置uwsgi 測試頁
cat /opt/test.py
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello Django"]
運行測試程序頁
uwsgi --http 8001 --wsgi-file test.py &
訪問頁面:http://172.24.92.14:8001/
測試成功,關閉進程
pkill uwsgi
四、配置uwsgi項目
cat uwsgi.ini
[uwsgi] socket = 127.0.0.1:9999 master = true workers = 2 max-requests = 1000 buffer-size = 30000 pidfile = /run/uwsgi.pid daemonize = /var/log/uwsgi.log
啟動uwsgi
uwsgi --ini uwsgi.ini &
檢查啟動uwsgi程序
檢查端口:
創建項目:(我這里已有寫好的項目了,這里只是為了演示)
django-admin.py startproject BBS
修改訪問權限:
vim /opt/BBS/BBS/settings.py
添加mysql支持
cat /opt/BBS/BBS/__init__.py
import pymysql pymysql.install_as_MySQLdb()
配置數據庫(需要提前創建數據庫,數據庫名為,'bbs')
cat /opt/BBS/BBS/settings.py
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'HOST': '127.0.0.1', 'PORT': 3306, 'USER': 'root', 'PASSWORD': '123456', 'NAME': 'bbs', } }
啟動數據庫
systemctl restart mariadb
systemctl enable mariadb
寫入數據庫表:
python3 manage.py makemigrations
python3 manage.py migrate
五、運行項目:
cd /opt/BBS/ python3 manage.py runserver 0.0.0.0:8000
六、訪問測試
http://172.24.92.14/
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
分享文章:nginx+uwsgi配置django項目-創新互聯
當前網址:http://m.newbst.com/article30/hpsso.html
成都網站建設公司_創新互聯,為您提供網站營銷、云服務器、網站導航、ChatGPT、建站公司、Google
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯