1. 服务器的运行方式:
nignx服务器的作用:
什么是WSGI?
WSGI,全程 Web Server Gateway Interface,或者Python Web Server Gateway Interface,是为Python语言定义的Web服务器和Web 应用程序或者框架之间的一种简单接口.自从WSGI被开发出来以后,许多其他语言中也出现类似接口
WSGI就是一种标准.譬如,一个德国人和一个法国人聊天,他们要想聊天可以通过过一个标准的国际语言:英语~
哪些框架自带了WSGI Server
很多框架都自带了WSGI Server,比如Flask,webpy,Django,CherryPy等等.当然性能都不好,都不行,自带的web server 更多的时候是我们测试的时候使用,发布时则使用生产环境的WSGI server或者联合nginx 做 uwsgi
概念总结
WSGI是一种Web服务器网关接口.它是一个Web服务器(如Nginx)与应用服务器(uWSGI服务器)通信的一种规范.
uWSGI是一个Web服务器,它实现了WSGI协议、uwsgi、http等协议.Nginx中HttpUwsgiModule的作用是与uWSGI服务器进行交换
特别注意WSGI/uwsgi/uWSGI这三个概念的区别
1. WSGI我们已经清楚是一种通信协议
2. uwsgi同WSGI一样是一种通信协议
3. 而uWSGI是实现了uwsgi和WSGI两种协议的Web服务器
为什么有了uWSGI还需要Nginx?因为Nginx具备优秀的静态内容处理能力,然后将动态内容转发给uWSGI服务器,这样可以达到很好的客户端响应*
2.部署开始
1. 首先购买云服务器(根据自己电脑系统的不同,选择不同的服务器系统,这里使用腾讯云Ubuntu16.04)
进入控制台
2. 使用 ssh 用户名@公网ip的方式连接远程的服务器(ubuntu服务器的默认名称是ubuntu)
ssh [email protected]
输入密码以后即可登录
3.配置云服务器
1)更新
sudo apt update
sudo apt upgrade
2)下载pip3
sudo apt install python3-pip
3) 配置虚拟环境
# 安装virtualenv
sudo pip3 install virtualenv
# 安装virtualenvwrapper
sudo pip3 install virtualenvwrapper
# 配置bashrc文件
vi .bashrc
# 在bashrc文件中加入以下几句命令
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
source /usr/local/bin/virtualenvwrapper.sh
# 退出,并激活bashrc配置文件
source .bashrc
4)现在可以创建虚拟环境了
# 创建
mkvirtualenv 名称
# 退出虚拟环境
deactivate
# 删除虚拟环境
rmvirtualenv 名称
5)下载mysql数据库
sudo apt-get install mysql-server mysql-client
根据提示输入密码即可
4.上传项目和相关配置
---------------------------------------------
可以使用filezilla
-
sudo apt-get install filezilla
找到项目文件夹,填写好远端的Host,Username,password,Port即可开始上传
2)可以将本地运行项目的虚拟环境使用的库同步到远端
2.1) 在本地运行项目的虚拟环境下,执行命令
pip3 freeze > config.txt
2.2)通过filezilla上传到服务器上,
2.3)进入服务器创建的虚拟环境中,输入命令
pip3 install -r config.txt
这样即可配置好虚拟环境
5.配置项目部署的配置文件
5.1)在项目的目录创建一个conf目录,用来保存部署的配置文件
mkdir conf
5.2)在conf目录下创建nignx.conf配置文件
# the upstream component nginx needs to connect to
upstream django {
# server unix:///path/to/your/mysite/mysite.sock; # for a file socket
server 127.0.0.1:8000; # for a web port socket (we'll use this first)
}
# configuration of the server
server {
# the port your site will be served on
listen 80;
# the domain name it will serve for
server_name www.long-road.cn; # substitute your machine's IP address or FQDN 远端的域名
server_name 188.131.242.174/ #你的远端服务器ip;
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias /home/ubuntu/django_blog/media; # 指向django的media目录
}
location /static {
alias /home/ubuntu/django_blog/static; # 指向django的static目录
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include uwsgi_params; # the uwsgi_params file you installed
}
}
5.3)在conf目录下创建uwsgi.ini配置文件
# mysite_uwsgi.ini file
[uwsgi]
# Django-related settings
# the base directory (full path)
chdir = /home/ubuntu/django_blog #chdir指向项目的目录
# Django's wsgi file
module = blog.wsgi #module指向项目下的wsgi.py文件
# the virtualenv (full path)
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 10
# the socket (use the full path to be safe
socket = 127.0.0.1:8000
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true
virtualenv = /home/ubuntu/.virtualenvs/blog #虚拟环境的地址
#logto = /tmp/mylog.log
# save uwsgi's status 保存uwsgi的运行状态
stats=%(chdir)/conf/uwsgi.status
# from restart/stop uwsgi 保存uwsgi的运行进程号
pidfile=%(chdir)/conf/uwsgi.pid
5.4)修改项目的settings.py中的静态文件的路径文件
STATIC_URL = '/static/'
# 注释掉下面的代码
#STATICFILES_DIRS = (
# os.path.join(BASE_DIR,'static'),
#)
AUTH_USER_MODEL = 'userapp.BlogUser'
# 配置富文本的功能
MEDIA_URL = '/media/'
# 放在django项目根目录,同时也需要创建media文件夹
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
CKEDITOR_UPLOAD_PATH = 'upload/'
# DRF的相关配置
# 所有跟rest framework有关的配置
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': [
'rest_framework.permissions.IsAdminUser',
],
'DEFAULT_PAGINATION_CLASS':'rest_framework.pagination.LimitOffsetPagination',
'PAGE_SIZE': 10,
}
STATIC_ROOT = os.path.join(BASE_DIR,'static/') # 配置部署时的静态文件目录
MEDIA_ROOT = os.path.join(BASE_DIR,'static/media/')
同时settings.py 文件中的ALLOWED_HOSTS = ["*"]和DEBUG = False
DEBUG = False # 项目上线后应关闭debug模式
ALLOWED_HOSTS = ["*"] #应该允许所有的ip地址可以访问项目
5.5)安装测试 nginx+uwsgi
安装nginx
sudo apt-get install nginx
安装uwsgi
pip3 install uwsgi
将conf目录下的nginx的配置文件加入到启动配置文件中
sudo ln -s /home/ubuntu/项目/conf/nignx.conf /etc/nginx/conf.d/
可以进入/etc/nginx/conf.d目录下查看是否成功
重启nginx服务器,并查看是否运行成功
sudo service nginx restart #重启nginx服务器
ps -aux | grep nginx # 查看nginx是否运行成功
5.6)进入项目的虚拟环境中,收集静态资源
python manage.py collectstatic # 收集静态资
源文件
应在服务器配置完成以后执行,该命令只会执行一次
5.7)进入项目的conf目录下,启动uwsgi服务器
uwsgi -i uwsgi.ini #启动uwsgi服务器
uwsgi --reload uwsgi.pid # 重启uwsgi服务器