From baf1f822c1fad0d9e53c30d0c72aeb9004bbcf5d Mon Sep 17 00:00:00 2001 From: iProbe Date: Mon, 5 Jun 2023 13:57:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20'linux=E5=9F=BA=E7=A1=80/u?= =?UTF-8?q?wsgi=E5=90=AF=E5=8A=A8.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- linux基础/uwsgi启动.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 linux基础/uwsgi启动.md diff --git a/linux基础/uwsgi启动.md b/linux基础/uwsgi启动.md new file mode 100644 index 0000000..30626be --- /dev/null +++ b/linux基础/uwsgi启动.md @@ -0,0 +1,10 @@ +## uwsgi启动 +```shell +# 示例 +uwsgi -s :8080 -m -p 3 --wsgi-file=$WFILE --pidfile=$PIDFILE --logto=$LOG +``` + +## http启动 +```shell +uwsgi --http :8080 -m -p 3 --wsgi-file=$WFILE --pidfile=$PIDFILE --logto=$LOG +``` \ No newline at end of file