一、安装nginx

以前的博客我有写,这里就不写了

http://www.cnblogs.com/wt11/p/6420442.html

二、安装mysql

我用的mysql5.7  64位的二进制包,官网下载安装编译好的二进制包,解压直接使用即可

https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.18-linux-glibc2.5-x86_64.tar.gz

安装二进制mysql5.7http://blog.csdn.net/wb96a1007/article/details/51559741

三、安装gunicorn

pip install gunicorn

在项目目录EdmureBlog下新建gunicorn的配置文件gunicorn.conf.py

[root@localhost EdmureBlog]# pwd
/EdmureBlog

[root@localhost EdmureBlog]# ls
backend  db.sqlite3   gunicorn.conf.py    manage.py   nginx.conf   repository    static     utils
blogss   debug.log   EdmureBlog            gunicorn.error.log  Monaco.ttf  __pycache__  singleton.py  templates  web

gunicorn.conf.py

import multiprocessing

bind = "127.0.0.1:8080"
workers = 2 #workers是工作线程数,一般设置成:服务器CPU个数 + 1
errorlog = '/EdmureBlog/gunicorn.error.log'
#accesslog = './gunicorn.access.log'
#loglevel = 'debug'
proc_name = 'gunicorn_blog_project'

四、在EdmureBlog下新建nginx的配置文件dj.conf ,将其链接到/app/nginx/conf/extra下      ln -s /EdmureBlog/dj.conf   /app/nginx/conf/extra/dj.conf

/EdmureBlog/dj.conf

server {
listen 8000;
server_name www.wt.com; #访问django项目的网站
access_log /EdmureBlog/logss/nginx.access.log;#访问日志
error_log //EdmureBlog/logss//nginx.error.log;#错误日志 location / {
proxy_pass http://127.0.0.1:8080;#动态请求交给gunicorn,8080端口就是gunicorn用的端口
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 /robots.txt {
alias /EdmureBlog/logss/static/robots.txt;
} location /favicon.ico {
alias /EdmureBlog/logss/static/img/favicon.ico;
} location ~ ^/(media|static)/ { # 注意这个static,如果项目中静态文件的存放目录是 /项目/statics,那么这里也要写成media|statics,然后在html文件中引用css和js的时候,路径也要写成/statics/css/...
root /EdmureBlog/; #静态文件存放路径
expires 30d;
} # this prevents hidden files (beginning with a period) from being served
location ~ /\. {
access_log off; log_not_found off; deny all;
} }

nginx主配置文件/app/nginx/conf/nginx.conf

user  root;
worker_processes 1; #error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info; #pid logs/nginx.pid; events {
worker_connections 1024;
}
http {
include mime.types;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
include extra/dj.conf; #django站点
include extra/www.conf; # 其他站点
include extra/bbs.conf; #其他站点
include extra/status.conf;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65; }

五、同时,django项目的站点名(www.wt.com)加入到 settings.py的ALLOWED_HOSTS里。

ALLOWED_HOSTS = ['www.wt.com',]

如果要外部访问,则打开8000端口:

/sbin/iptables -I INPUT -p tcp --dport 8000 -j ACCEPT

service iptatbles save

六、运行gunicorn:

[root@localhost EdmureBlog]# pwd
/EdmureBlog

[root@localhost EdmureBlog]# nohup   /usr/local/bin/gunicorn   EdmureBlog.wsgi:application   -c   /EdmureBlog/gunicorn.conf.py  &

七、启动nginx

/app/nginx/sbin/nginx -t 检查配置语法是否正确

/app/nginx/sbin/nginx   启动nginx服务

八、关闭防火墙,没有dns的话,Windows修改hosts文件,浏览器访问www.wt.com即可

在nginx上部署django项目--------Gunicorn+Django+nginx+mysql的更多相关文章

  1. 在nginx上部署vue项目(history模式);

    在nginx上部署vue项目(history模式): vue-router 默认是hash模式,使用url的hash来模拟一个完整的url,当url改变的时候,页面不会重新加载.但是如果我们不想has ...

  2. 在nginx上部署vue项目(history模式)--demo实列;

    在很早之前,我写了一篇 关于 在nginx上部署vue项目(history模式) 但是讲的都是理论,所以今天做个demo来实战下.有必要让大家更好的理解,我发现搜索这类似的问题还是挺多的,因此在写一篇 ...

  3. centos上部署flask项目之环境配置-MySQL的安装

    1.添加mysql 的yum源 wget 'https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm'    rpm ...

  4. 在Nginx上部署ThinkPHP,解决Pathinfo问题

    在Nginx上部署ThinkPHP,解决Pathinfo问题 事实上.要解决nginx不支持pathinfo的问题.有两个解决思路,一是不使用pathinfo模式,二是改动nginx的配置文件,使它支 ...

  5. Django项目和Django初体验和创建、目录结构认识

    .MVC的设计方式(跟Flask一样,都是MVC的设计模式) .开发效率高 .功能强大(丰富的第三方组件) .安全性高(帮助开发者规避安全漏洞) 目前市面上使用:Django>Flask #使用 ...

  6. nginx上部署python web

    nginx上部署python web http://uwsgi-docs.readthedocs.io/en/latest/tutorials/Django_and_nginx.html

  7. Nginx上部署HTTPS

    Nginx上部署HTTPS依赖OpenSSL库和包含文件,即须先安装好libssl-dev,且ln -s /usr/lib/x86_64-linux-gnu/libssl.so  /usr/lib/, ...

  8. 在Linux上部署Web项目

    You believe it or not there is a feeling, lifetime all not lost to time. 在Linux上部署Web项目 这个是普通的web项目, ...

  9. Nginx上部署HTTPS + HTTP2

    Nginx上部署HTTPS依赖OpenSSL库和包含文件,即须先安装好libssl-dev(或者OpenSSL),且ln -s /usr/lib/x86_64-linux-gnu/libssl.so ...

随机推荐

  1. Jquery remove() empty() css()

    1删除元素remove,empty remove()   和 empty()的区别 remove:包括选中的元素包括其子元素, empty:清除其子元素. 2.css属性 多属性使用{}括起来. &l ...

  2. NSData 数据

    前言 NSData 和它的可变长子类 NSMutableData 是字节缓冲区的对象化封装.我们可以获得简单缓冲区,并进行一些转换操作. 通常我们并不会直接创建字节数据,而是从其他类型的内容转换成字节 ...

  3. MVC进阶篇(一)——概览

    前言 说到MVC,就得先说说框架是什么东西,MVC好多人都知道,是Model.view.controller,但是MVC到底是什么样的一个框架呢,好多人又说了是约定大于配置.下面我来说说我的理解. 内 ...

  4. MongDB from execCommand not master

    count failed: not master{ , "errmsg" : "not master" } at src/mongo/shell/query.j ...

  5. opencv学习笔记2

    import cv2 as cvimport numpy as np"""#图像加法运算 即像素加法 (结果图=图1+图二) (两个图像必须是等大等类型的)image = ...

  6. HDU-1431-素数回文(暴力打表)

    素数回文 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submi ...

  7. 【问题记录】element is not attached to the page document

    遇到ui脚本报错:element is not attached to the page document 解决办法,再次定位即可

  8. jquery.from帮助类

    /** * 将form里面的内容序列化成json * 相同的checkbox用分号拼接起来 * @param {obj} 需要拼接在后面的json对象 * @method serializeJson ...

  9. 26.Generate Parentheses(生产有效括号的种类)

    Level:   Medium 题目描述: Given n pairs of parentheses, write a function to generate all combinations of ...

  10. python学习之路---day06

    一:is 和 == 的区别 01)a b 两个变量 is 是比较变量的内存地址,如果地址相等,则返回True,如果不相等,则返回False == 是比较变量两边内容是否一样,如果一样则返回True,不 ...