4

gunicorn 是否有类似 uwsgi 的 touch-reload 功能?

我正在开发一些 Web 应用程序,需要检查一些更改。早些时候,我使用了带有 touch-reload 的 uwsgi,它太棒了!但由于某种原因,我将其更改为 gunicorn(生成 0 个字节),并且在代码更改时看不到任何自动重载/自动重启。

如何实施?

4

2 回答 2

0

从 gunicorn 19.8 开始,您可以指定--reload-extra-file观看文件,参考http://docs.gunicorn.org/en/stable/settings.html#reload-extra-files。不要忘记--reload--reload-extra-file不起作用。

于 2019-10-01T08:11:35.313 回答
-2

--touch-reload=path/to/file对于 uwsgi ==--reload /path/to/file对于 gunicorn

于 2015-08-24T18:36:41.453 回答