app.run(host='127.0.0.1',port=8000) 但是使用 gunicorn run:app -b localhost:8000 同样启动成功 使用supervisor 配置文件内容如下[program:niceblog]command=/home/seven/.pyenv/versions/daily/bin/gunicorn manage:app -b localhost:8000diretory=/home/seven/Desktop/nicebloguser=rootautostart=trueautorestart=...