[Ubuntu] 从零开始的 Flask+Gunicorn+Nginx

下面记录在腾讯云服务器上配置和启动服务的全过程

1. 安装所需模块

已经安装过的模块可以跳过

# 安装 Python
$ sudo apt install python3
# 安装/升级 pip
$ sudo apt install python3-pip
$ sudo python3 -m pip install --upgrade pip
# 安装 Flask/Nginx/Gunicorn
sudo pip3 install flask
sudo apt install nginx
sudo apt install gunicorn3

2. 配置 Nginx

创建文件 nginx.conf, 在文件中写入下面的内容

server {
    listen  80;      # 不需要 修改
    server_name _;   # 填写 IP 或域名
    location / {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass  http://127.0.0.1:8080;
        proxy_read_timeout 500;
        }
} 

将配置文件放在 /etc/nginx/conf.d 下, 或者放在自己的项目中, 然后软连接到 /etc/nginx/conf.d 下, 操作命令形如

sudo ln -s xx/../nginx.conf /etc/nginx/conf.d/nginx.conf

3. 启动 Flask

新建 test.py 文件, 写入下面的内容

from flask import Flask

app = Flask(__name__)

@app.route('/hello', methods = ['GET', 'POST'])
def hello():
    return '

Hello

' if __name__ == '__main__': app.run(debug=True, host='0.0.0.0', port=8080)

运行该文件即可在8080端口启动服务, 在浏览器中输入 ip_addr:8000/hello 即可看到返回结果

4. 启动 Gunicorn

进入上一步中创建的 test.py 所在目录, 执行下面的命令

gunicorn3 -w 5 test:app -b 0.0.0.0:8080 -D

可以启动 Gunicorn, 其中 -w 设置要启动的监听进程数, test 是包含服务启动程序的文件名, -b 设置 IP 和端口, -D 表示后台运行

5. 启动 Nginx

启动命令

sudo /etc/init.d/nginx start

重启命令

sudo /etc/init.d/nginx restart

6. 功能整合

上面提到的操作已经整合在下面的仓库里, 感兴趣的可以看一下
https://github.com/Kazenouta/web_demo.git
[Ubuntu] 从零开始的 Flask+Gunicorn+Nginx_第1张图片

你可能感兴趣的:(Ubuntu)