Flask + uWSGI + Nginx 项目部署方案
Posted CodeLogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask + uWSGI + Nginx 项目部署方案相关的知识,希望对你有一定的参考价值。
nginx 前言
Nginx有几个优点:
1、负载均衡
:根据请求情况和服务器负载情况,将请求分配给不同的web服务器,保证服务器性能。
2、反向代理
:客户端的请求由代理服务器分配给某web服务器,而不是客户端指定的目标服务器。对于一些静态文件,可以直接由反向代理处理,不经过web服务器。
3、安全性
:客户端无法得知真正的服务器IP地址,保证了服务器的安全。
Nginx 与 uWSGI 之前的关系??
uWSGI是python的一个库,安装了这个库之后,我们可以使用命令uwsgi,通过这个命令和一些配置,我们能够产生一个web服务器,通信协议为 http 或 https。
Nginx 对于处理静态文件更有优势,性能更好。如果是小网站,没有静态文件需要处理,只用 uWSGI 也是可以的,但加上 Nginx 这一层,优势可以很具体。
安装 Nginx
安装nginx的依赖
yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
安装Nginx
yum install -y nginx
启动
systemctl start nginx.service
开机自动启动
systemctl enable nginx.service
编辑配置文件nginx.conf,如果不清楚配置文件路径,可以使用 whereis nginx
查询,一般会在 /etc/nginx 路径下。
如果是不熟悉配置规则的朋友,建议先备份一份源文件再做修改。
配置
nginx.conf 配置(http):
http
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
include /etc/nginx/conf.d/*.conf;
#gzip on;
upstream flask
server 127.0.0.1:5200;
server
listen 8000;
server_name 0.0.0.0;
charset utf-8;
client_max_body_size 75M;
location /static/(.*)
alias /home/project/flask/UploadFiles/uploadfiles/static/;
location /
uwsgi_pass flask;
include /etc/nginx/uwsgi_params;
检查配置文件语法是否有错误:nginx -t
检查 nginx 状态:systemctl status nginx
重启 nginx 使配置文件生效:systemctl restart nginx
将原先的uWSGI服务先停止,修改项目路径下的 uwsgi.ini
配置文件,将端口设置改为socket模式,注释掉原来的http,改为:socket = :5200
修改保存完成后,重新启动:uwsgi --ini uwsgi.ini
远端访问
请求你的 公网IP:8000 是否正常访问,Response Headers 中显示对应的服务器版本信息。
以上是关于Flask + uWSGI + Nginx 项目部署方案的主要内容,如果未能解决你的问题,请参考以下文章