摘要:今天介绍一下如何在中为项目搭建环境。执行完后,再执行和进行编译和安装。安装完成后,即可启动并访问首页验证是否安装成功。
今天介绍一下如何在ubuntu18.04中为django项目搭建nginx+gunicorn环境。
具体步骤如下:
1.安装gunicorn: pip install gunicorn
2.使用gunicorn启动django项目: gunicorn 项目名称.wsgi:application –bind 127.0.0.1:8000
3.安装并配置nginx:
编译安装时,在安装nginx前,需要先安装其他几个软件包,具体安装如下:
1)安装openssl:
wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz tar zxvf openssl-1.1.0e.tar.gz
解压完成后,进入openssl所在目录,依次执行./config、make和make install进行安装;
2)安装zlib:
wget https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz tar zxvf zlib-1.2.11.tar.gz
解压完成后,进入zlib所在目录,依次执行./configure、make和make install进行安装;
3)安装pcre:
wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz tar zxvf pcre-8.40.tar.gz
解压完成后,进入pcre所在目录,依次执行./configure、make和make install进行安装;
当然,以上软件包还可以下载并安装其他版本。
4)安装nginx,可以点击 http://nginx.org/en/download.... 来下载你需要的nginx版本。下载完成后,使用tar命令解压: tar zxvf nginx-1.14.0.tar.gz
解压完成后进入nginx目录,执行以下命令进行配置:
./configure --with-http_ssl_module --with-cc-opt="-Wno-error" --with-pcre=/home/wyzane/install_package/pcre-8.40 --with-zlib=/home/wyzane/install_package/zlib-1.2.11 --with-openssl=/home/wyzane/install_package/openssl-1.1.0e
以上配置中,我将软件包都安装在了/home/wyzane/install_package/目录下,也可以安装在其他目录中。
执行以上配置后,我在编译(make)时遇到了一个错误,错误信息大致如下:
src/core/ngx_murmurhash.c:37:11: error: this statement may fall through [-Werror=implicit-fallthrough
后来在 https://trac.nginx.org/nginx/ 中找到了解决办法,即在执行./configure时加上 –with-cc-opt=”-Wno-error” 这个参数。
以后再安装nginx遇到问题时,都可以取上面那个网站寻找解决方案。
执行完./configure后,再执行make和make install进行编译和安装。
安装完成后,即可启动ngin并访问nginx首页验证是否安装成功。
4.配置nginx: 进入nginx.conf文件中修改配置
配置下面的部分即可:
server { listen 80; server_name 192.168.114.113; #charset koi8-r; #access_log logs/host.access.log main; location / { proxy_pass http://192.168.114.113:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location /static { alias /home/wyzane/pyprojects/test/test/static; } }
主要配置listen,server_name,location / 和location /static
listen是需要监听的端口,server_name是gunicorn启动后服务器的ip,location /指定根路径,location /static指定静态文件路径
5.配置完nginx后,搜集静态文件: python manage.py collectstatic
6.启动nginx和gunicorn,即可访问项目。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/40092.html
今天来聊一下django项目测试环境的搭建,看下面的具体步骤。 以下环境在ubuntu18.04下搭建,步骤如下: 1.安装数据库mysql5.7:1)安装 sudo apt-get install mysql-server sudo apt-get install mysql-client 设置root用户的密码: 1)进入mysql: mysql 2)select user, plugin ...
摘要:配置这个启动其他方式安装七牛云由于网站的静态存储要用七牛云,在运行程序前要安装否则报错没有的方法。七牛云安装前注意安装的版本,我被坑过一次,写程序时是版本,部署时都了,接口全都不一样。还有推荐下这篇来自的部署实例 以下所有代码中的操作都需要在命令行运行 安装mysql apt-get update apt-get install mysql-server mysql-client 根据...
阅读 1027·2023-04-26 02:02
阅读 2369·2021-09-26 10:11
阅读 3519·2019-08-30 13:10
阅读 3706·2019-08-29 17:12
阅读 687·2019-08-29 14:20
阅读 2167·2019-08-28 18:19
阅读 2167·2019-08-26 13:52
阅读 931·2019-08-26 13:43