您好,登錄后才能下訂單哦!
Nginx+uwsgi+Django部署代碼怎么編寫,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
在你的機器上寫一個test.py
# test.py
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return "Hello World"
然后執行shell命令:
uwsgi --http :8001 --wsgi-file test.py
訪問網頁:
http://127.0.0.1:8001/
看在網頁上是否有Hello World
[root@host-192-168-1-56 devops]# more my.ini
[uwsgi]
socket=:8001
chdir=/svn/devops/devops ###項目目錄
pythonapth=/usr/bin/python
processes=4
env=DJANGO_SETTINGS_MODULE=devops.settings ###指定 項目名.setting
module=devops.wsgi ###指定wsgi.py配置文件,該配置文件和setting在一個目錄下
threads=0
master=true
daemonize=/tmp/uwsgi.log
pidfile=/tmp/uwsgi.pid
python-autoreload=true
buffer-size=51200
[root@host-192-168-1-56 devops]# more devops/wsgi.py
"""
WSGI config for devops project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "devops.settings")
application = get_wsgi_application()
配置文件
[root@host-192-168-1-56 devops]# more /usr/local/nginx/conf/vhost/blog.haodai.com.conf
upstream django {
server 127.0.0.1:8001; # for a web port socket (we'll use this first)
}
server {
listen 8099;
server_name devops.XXX.net;
charset utf-8;
root /svn/devops/devops;
client_max_body_size 75M; # adjust to taste
location /static {
alias /svn/devops/devops/static; ---nginx調用項目的靜態文件
expires 20d;
}
location / {
uwsgi_pass django; ---反向代理,簡單寫法直接寫成uwsgi_pass 127.0.0.1:8001即可
include uwsgi_params;
}
access_log /home/wwwlogs/devops.log access;
}
啟動uwsgi和nginx
[root@host-192-168-1-56 devops]# /usr/local/python/bin/uwsgi my.ini
[root@host-192-168-1-56 devops]# nginx -s reload
測試:
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。