From 62c86e04e73628a78f49636a3b0c20ec41a7bfc2 Mon Sep 17 00:00:00 2001 From: liujianjiang Date: Fri, 5 Dec 2025 09:43:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gunicorn_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn_conf.py b/gunicorn_conf.py index d561529..f5f7389 100644 --- a/gunicorn_conf.py +++ b/gunicorn_conf.py @@ -3,7 +3,7 @@ import multiprocessing import os # 服务器socket -bind = "0.0.0.0:8000" +bind = "0.0.0.0:8012" # 工作进程数 workers = multiprocessing.cpu_count() * 2 + 1