nginx+gunicorn+fastapi 部署自动后台启动

方案背景

系统版本:debian9
环境搭配:python3 虚拟环境 + fastapi + uvicorn + gunicorn
项目根目录: /data/wwwroot/domian.com

官方文档中是以 IP:PORT 形式启动 fastapi,但每次都要进虚拟环境通过命令启动 gunicorn,贼麻烦。后来改成 systemd + gunicorn 的方式后,开机自动启动 gunicorn 而且不占用端口。

具体部署 fastapi 另外写文章说明,本文章只说 nginx + systemd + gunicorn 的配置方式。

大概方案

新建以下文件:

/etc/systemd/system/gunicorn.service
/etc/systemd/system/gunicorn.socket

nginxconf 文件中 不用代理 ip:prot 形式,而是代理sock 文件。

具体步骤

/etc/systemd/system/gunicorn.service

[Unit]
Description=gunicorn daemon
Requires=gunicorn.socket
After=network.target

[Service]
Type=notify
# the specific user that our service will run as
User=gunicorn
Group=www
# another option for an even more restricted service is
# DynamicUser=yes
# see http://0pointer.net/blog/dynamic-users-with-systemd.html
RuntimeDirectory=gunicorn

# WorkingDirectory 是项目路径目录
WorkingDirectory=/data/wwwroot/domian.com
# 代替手动执行的命令,
# 原本在虚拟环境中要执行的 gunicorn -c gconfig.py main:app -k uvicorn.workers.UvicornWorker
# 其中 gunicorn 和 gconfig.py 要写完整的路径名称
ExecStart=/data/wwwroot/luejiao.com/venv/bin/gunicorn -c /data/wwwroot/luejiao.com/gconfig.py main:app -k uvicorn.workers.UvicornWorker
ExecReload=/bin/kill -s HUP $MAINPID
KillMode=mixed
TimeoutStopSec=5
PrivateTmp=true

[Install]
WantedBy=multi-user.target

/etc/systemd/system/gunicorn.socket

[Unit]
Description=gunicorn socket

[Socket]
# ListenStream 写要生成的 sock 文件路径,要写完整路径。我是放到项目根目录下的。
ListenStream=/data/wwwroot/domian.com/domian.com_gunicorn.sock
# Our service won't need permissions for the socket, since it
# inherits the file descriptor by socket activation
# only the nginx daemon will need access to the socket
User=www-data
# Optionally restrict the socket permissions even more.
# Mode=600

[Install]
WantedBy=sockets.target

nginxdomian.conf,其它配置不写,主要是 / 代理这部分:

location / {
    # 放弃原始 ip 端口形式,改为代理到 sock 文件
    # proxy_pass http://127.0.0.1:3002; 
    # unix 后面的路径就是前面文件中的 sock 文件的完整路径,注意格式。
      proxy_pass http://unix:/data/wwwroot/domian.com/domian.com_gunicorn.sock;
    }

操作命令

重启 nginx 后,会自动生成 domian_gunicorn.sock,然后打开域名确认 fastapi 应用是否正常启动:

systemctl reload nginx.service
systemctl restart nginx.service

开机启动并立即启动 gonicorn.socket

systemctl enable gunicorn.socket --now

不同的操作命令:

启动: systemctl start gunicorn.service
状态:systemctl status gunicorn.service
停止:systemctl stop gunicorn.service
重启:systemctl restart gunicorn.service

你可能感兴趣的:(nginx,systemd)