欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

腾讯云服务器 flask项目 傻瓜式部署全流程 (四)

程序员文章站 2022-06-11 11:30:09
...

目录

                                 第四部分:nginx/uwsgi安装配置

一、nginx安装/配置

二、安装uwsgi

三、 配置nginx.conf文件

四、配置uwsgi文件

五、检测部署


                                 第四部分:nginx/uwsgi安装配置

一、nginx安装/配置

1、添加nginx存储库

yum install epel-release

2、安装nginx

yum install nginx

3、运行启动nginx

systemctl start nginx

常用nginx运行命令

#查看nginx的状态 systemctl status nginx 
# 启动 systemctl restart nginx 
# 停止关闭 systemctl stop nginx 
# 设置开机启动 systemctl enable nginx 
# 禁止开机启动 systemctl disable nginx

二、安装uwsgi

1、安装uwsgi 

(因为我们是python3的环境所以我们一定要使用pip3来安装,否则就安装到python2中去了.)
pip3 install uwsgi

2、将uwsgi配置到环境变量中,建立软链接

ln -s /usr/local/python36/bin/uwsgi /usr/bin/uwsgi

三、 配置nginx.conf文件

1、配置文件

进入conff文件夹中创建一个名称为XXXXX.conf 的文件

server {
    listen       80;
    server_name  www.XXXX.com(或者公网IP);

    access_log /home/logf/access.log;
    error_log /home/logf/error.log;

    location / {
        include uwsgi_params;
        uwsgi_pass 127.0.0.1:5050;
        
        uwsgi_param UWSGI_PYHOME /home/envf/venv;
        uwsgi_param UWSGI_CHDIR /home/www/myblog_fk(项目名);
        uwsgi_param UWSGI_SCRIPT manage:app;
    }
}

2、修改nginx总配置文件

vim /etc/nginx/nginx.conf

在server上方添加配置语句:
include /home/conff/*.conf;

四、配置uwsgi文件

1、配置文件

进入conff文件夹下,定义一个名称为uwsgi.ini文件:
vim uwsgi.ini

[uwsgi]
	socket=127.0.0.1:5050
	chdir=/home/www/
	wsgi-file = manage.py
	pythonpath=/usr/local/python36/bin/python3
	pythonhome=/home/envf/venv
	callbale=app
	logto = /home/logf/uwsgi.log
	daemonize = /home/logf/uwsgicof.log
	stats = 127.0.0.1:5555

2、拷贝uwsgi_params文件到项目路径下

cp /etc/nginx/uwsgi_params  /home/www/myblog_fk(文件夹名)

五、检测部署

重启nginx服务:
systemctl restart nginx.service
浏览器访问公网ip或域名地址:
出现502错误