1. 程式人生 > >python簡單實用gunicorn部署

python簡單實用gunicorn部署

python linux install -- 實用 lin tab name manage

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部署