首先,你要有一个服务器。这个不管是你自己的电脑,还是购买的云服务器都行,这里假设你已经有了一个云服务器,系统当然是Ubuntu系统了。
接下来,我们要在云服务器上安装nginx网页服务器,我们使用nginx作为执行Django的网页服务器,数据库则使用Django自带的SQLite。这里假设你已经在服务器配置好了python3.6运行环境,并且有了一个Django网站。
首先 安装nginx:
apt-get install nginx
在这里也附上删除nginx的链接
https://blog.csdn.net/sinat_32247833/article/details/70225461
安装成功后,输入$ start nginx
命令启动nginx,之后当你输入服务器IP地址时,你就可以看到nginx欢迎界面了
接下来,安装uwsgi,指令如下:
root@ubuntu:/etc# pip install uwsgi # 这里pip是python3.6的pip
这里可以写一个测试脚本测试一下:
# cat test.py
def application(environ, start_response):
status = '200 OK'
output = 'Hello World! powerde by wsgi'
response_headers = [('Content-type', 'text/plain'), ('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
运行
uwsgi --http :8001 --wsgi-file test.py
然后在服务器中访问 http://127.0.0.1:8001
或者直接在外网访问 http://服务器ip:8001
,注意,这里可能要配置服务器安全规则,将8001这个端口开放。
访问这个测试页会显示 Hello World! powerde by wsgi。说明运行成功。
接着安装git版本控制程序,对之前Bitbucket中的远程文档库进行设置:
$ apt-get install git
$ git config --global user.name "你的Bitbucket用户名"
$ git config --global user.email "你的Bitbucket邮箱"
再安装虚拟环境:
$ apt-get install virtualenv
我们打算把网页放在 /var/www 下。因此,到/var/www 下使用virtualenv创建虚拟环境并启用,在使用git clone
把我们放在文档库中的网站复制一份下来。
root@iZb04i5zagoohsZ:/# cd /var/www
root@iZb04i5zagoohsZ:/var/www# virtualenv Mblog_ENVE
Using base prefix '/etc/python3.6'
New python executable in /var/www/Mblog_ENVE/bin/python
Please make sure you remove any previous custom paths from your /root/.pydistutils.cfg file.
Installing setuptools, pip, wheel...
done.
root@iZb04i5zagoohsZ:/var/www# source Mblog_ENVE/bin/activate
(Mblog_ENVE) root@iZb04i5zagoohsZ:/var/www# git clone https://fedluo@bitbucket.org/fedluo/myblog.git
Cloning into 'myblog'...
Password for 'https://fedluo@bitbucket.org':
(···略···)
(Mblog_ENVE) root@iZb04i5zagoohsZ:/var/www# cd myblog
(Mblog_ENVE) root@iZb04i5zagoohsZ:/var/www/myblog# pip install -r requirements.txt
Looking in indexes: http://mirrors.aliyun.com/pypi/simple/
Collecting Django==2.1.4 (from -r requirements.txt (line 1))
(···略···)
上述操作的最后一个步骤是按照requirements.txt中列出的组建,使用pip把所有网站会用到的组建全部补上。
真正上线的网站,是通过网页服务器把远程服务器的请求转送到Django程序中执行,再把执行后的结果通过网页服务器传回给浏览器。
所以,首先settings.py文件中要指定允许存取此网站的 IP地址为"*",表示不做任何限制。
我们可以直接运行这个django项目测试一下:python manage.py runserver 0.0.0.0:8000
,之后你打开网址服务器公网IP:8000
,这样就能看到你的django项目运行的结果了
接着再使用wsgi.py进行测试,在django的根目录(含有manage.py文件的那个目录),运行uwsgi --http :8000 --module 你的django名.wsgi
,这样的话django项目也可以运行起来。
但是这样还不够,我们要把django项目运行在nginx上,所以我们在django项目目录新建一个文件夹用来存放uwsgi配置文件,并且新建一个mysite.ini文件用来保存配置
mkdir mysite_uwsgi
cd mysite_uwsgi
vim mysite.ini
这里是写入mysite.ini的内容:
[uwsgi]
# 你的django项目路径
chdir = /home/fedluo/DjangoProjects/mblog
# 虚拟环境的路径
home = /home/fedluo/DjangoProjects/VENV
wsgi-file = /home/fedluo/DjangoProjects/mblog/mblog/wsgi.py
module = mblog.wsgi:application
# 使用主线程
master = True
# 分4条线程
processes = 4
# 响应延时
harakiri = 60
# 一条线程可以接受多少条请求
max-requests = 5000
# socket请求,这里要和下面的nginx配置文件中的保持一致
socket = 0.0.0.0:8001
uid = 1000
gid = 2000
pidfile = /home/fedluo/DjangoProjects/mysite_uwsgi/master.pid
daemonize = /home/fedluo/DjangoProjects/mysite_uwsgi/mysite.log
vacuum = True
接下来我们要更改一下nginx的配置文件,但我们进入/etc/nginx目录下,其中包含许多文件
(VENV) root@iZb04i5zagoohsZ:/etc/nginx# ls
conf.d koi-utf nginx.conf sites-available uwsgi_params
fastcgi.conf koi-win proxy_params sites-enabled win-utf
fastcgi_params mime.types scgi_params snippets
在sites-enabled
文件夹中的是已经可以执行的配置文件,sites-available
文件夹是可用的配置文件,我们删除sites-enabled
文件夹中的default
文件,之后我们再到sites-available
文件夹中创建一个mysite.conf
配置文件,它的内容是:
server{
listen 80;
server_name 127.0.0.1;
charset utf-8;
client_max_body_size 75M;
location /static {
# 这个是你django项目的static文件
alias /home/fedluo/DjangoProjects/mblog/static;
}
location /media{
alias /home/fedluo/DjangoProjects/mblog/media;
}
location / {
# 这里的网址要和上述mysite.ini的文件一致
uwsgi_pass 0.0.0.0:8001;
include /etc/nginx/uwsgi_params;
}
}
之后保存即可。这样我们就把配置文件都写好了,那么接下来就让nginx运行咱们写好的配置文件,再建立一个软链接到sites-enabled中去(路径要用绝对路径)。
uwsgi --ini /home/fedluo/DjangoProjects/mysite_uwsgi/mysite.ini
ln -s /etc/nginx/sites-available/mysite.conf /etc/nginx/sites-enabled/mysite.conf
之后就是用nginx -t
命令查看nginx状态,都OK的话就可以使用service nginx restart
命令来重启nginx,之后直接输入你的公网IP就可以了。