flask+gunicorn+nginx部署

cetnos 7

yum install nginx
systemctl status nginx   #查看状态
systemctl stop nginx     #停止
systemctl start nginx    #启动

查看一下端口

ps -ef | grep  nginx
lsof -i:80

我们可以访问自己的网址,可以看到欢迎centos 或者 欢迎nginx ,说明成功

配置一下
我们的nginx配置目录在 /etc/nginx

vi /etc/nginx/nginx.conf
# 如果是多台服务器的话,则在此配置,并修改 location 节点下面的 proxy_pass 
upstream flask {
        server 127.0.0.1:5000;
        server 127.0.0.1:5001;
}
server {
        # 监听80端口
        listen 80 default_server;
        listen [::]:80 default_server;

        root /var/www/html;

        index index.html index.htm index.nginx-debian.html;

        server_name _;

        location / {
                # 请求转发到gunicorn服务器
                proxy_pass http://127.0.0.1:5000;
                # 请求转发到多个gunicorn服务器
                # proxy_pass http://flask;
                # 设置请求头,并将头信息传递给服务器端 
                proxy_set_header Host $host;
                # 设置请求头,传递原始请求ip给 gunicorn 服务器
                proxy_set_header X-Real-IP $remote_addr;
        }
}

我们可以查看nginx日志

cd /var/log/nginx

2我们安装gunicorn

pip install gunicorn
gunicorn -h

启动

gunicorn -w 2 -b 127.0.0.1:5000 manage:app

你可能感兴趣的:(flask+gunicorn+nginx部署)