一、環(huán)境所需安裝包與nginx 配置
在網(wǎng)站建設(shè)、成都網(wǎng)站制作過(guò)程中,需要針對(duì)客戶的行業(yè)特點(diǎn)、產(chǎn)品特性、目標(biāo)受眾和市場(chǎng)情況進(jìn)行定位分析,以確定網(wǎng)站的風(fēng)格、色彩、版式、交互等方面的設(shè)計(jì)方向。成都創(chuàng)新互聯(lián)公司還需要根據(jù)客戶的需求進(jìn)行功能模塊的開發(fā)和設(shè)計(jì),包括內(nèi)容管理、前臺(tái)展示、用戶權(quán)限管理、數(shù)據(jù)統(tǒng)計(jì)和安全保護(hù)等功能。
yum install nginx sqlite-devel sqlite zlib-devel openssl-devel MySQL-python -y
cat /etc/nginx/conf.d/py.conf
server { listen 80; server_name 192.168.1.160; client_max_body_size 100M; location / { index index.html; include uwsgi_params; uwsgi_pass 127.0.0.1:9999; uwsgi_param UWSGI_SCRIPT demosite.wsgi; uwsgi_param UWSGI_CHDIR /opt/demosite; } }
重啟生效
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/
make && make install
配置python 環(huán)境變量
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 測(cè)試頁(yè)
cat /opt/test.py
def application(env, start_response): start_response('200 OK', [('Content-Type','text/html')]) return [b"Hello Django"]
運(yùn)行測(cè)試程序頁(yè)
uwsgi --http :8001 --wsgi-file test.py &
四、配置uwsgi項(xiàng)目
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
啟動(dòng)uwsgi
uwsgi --ini uwsgi.ini &
修改訪問權(quán)限:
cd /opt/demosite/demosite
vim settings.py
ALLOWED_HOSTS = ['*']
添加mysql支持
cat __init__.py
import pymysql pymysql.install_as_MySQLdb()
配置數(shù)據(jù)庫(kù)(需要提前創(chuàng)建數(shù)據(jù)庫(kù),數(shù)據(jù)庫(kù)名為,'bbs')
settings.py
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'bbs', 'HOST':'127.0.0.1', 'USER':'root', 'PORT':3306, 'PASSWORD':'y', } }
五、創(chuàng)建與啟動(dòng)django項(xiàng)目
django-admin.py startproject demosite cd demosite python3 manage.py runserver 0.0.0.0:8002
測(cè)試:
在瀏覽器內(nèi)輸入:http://127.0.0.1:8002,檢查django是否運(yùn)行正常。
最后整體測(cè)試:
http://192.168.1.160/
網(wǎng)站題目:使用nginx+uwsgi配置django項(xiàng)目
文章來(lái)源:http://jinyejixie.com/article20/jdopco.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站、企業(yè)網(wǎng)站制作、網(wǎng)頁(yè)設(shè)計(jì)公司、做網(wǎng)站、App設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)