From f4637f0cd83ffbac887c99f1d3417ac2f05f345f Mon Sep 17 00:00:00 2001 From: RainSun Date: Wed, 26 Feb 2020 21:31:49 +0800 Subject: [PATCH] update conf to py --- README.md | 2 +- gunicorn.conf => gunicorn.conf.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename gunicorn.conf => gunicorn.conf.py (100%) diff --git a/README.md b/README.md index 6a34a1d..2ae7d3f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ export FLASK_ENV=development // 启动临时服务 flask run --host=0.0.0.0 -p 8001 // 启动永久服务 -gunicorn coc:app -c gunicorn.conf +gunicorn coc:app -c gunicorn.conf.py // 查看已启动服务 pstree -ap|grep gunicorn // 关闭某服务 diff --git a/gunicorn.conf b/gunicorn.conf.py similarity index 100% rename from gunicorn.conf rename to gunicorn.conf.py