在Linux上使用Nginx + Gunicorn部署Django工程
tmux + start django
tmux
1 | tmux new -s session_name # 创建名为 session_name 的 tmux session |
1 | ctrl + b |
nginx
1 | sudo systemctl status nginx |
gunicorn 部署
nginx 收集静态文件
1 | STATIC_ROOT = os.path.join(BASE_DIR, 'static') |
gunicorn 部署
1 | pip install gunicorn |
1 | conda run gunicorn darwinproject.wsgi -w 2 -k gthread -b 0.0.0.0:8000 |
收集静态文件
1 | python manage.py collectstatic |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Naylen's Blog!
评论