码迷,mamicode.com
首页 > 编程语言 > 详细

python简单实用gunicorn部署

时间:2018-12-03 23:33:26      阅读:529      评论:0      收藏:0      [点我收藏+]

标签:import   main   安装   http   部署   install   run   div   html   

linux 安装 pyuthon

 

安装   pip install gunicorn

 

manage.py 文件

from app import create_app

app = create_app()

if __name__ == __main__:
    app.run()

 

运行命令

gunicorn -D -b 0.0.0.0:12100 manage:app

-D 后台运行

gunicorn --config=config.py manage:app    

带配置文件的启动


官网

http://docs.gunicorn.org/en/stable/run.html

 

python简单实用gunicorn部署

标签:import   main   安装   http   部署   install   run   div   html   

原文地址:https://www.cnblogs.com/angdh/p/10061709.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!