heroku上的gunicorn:绑定到localhost



我一直在学习https://devcenter.heroku.com/articles/django#declare-使用procfile处理类型。除了一件事让我困扰之外,一切都很顺利。

启动工头后,我应该看到以下内容:

$ foreman start
2013-04-03 16:11:22 [8469] [INFO] Starting gunicorn 0.17.2
2013-04-03 16:11:22 [8469] [INFO] Listening at: http://127.0.0.1:8000 (8469)

然而,我得到:

Starting gunicorn 17.5
Listening at: http://0.0.0.0:5000

我如何更改它,使它只侦听我的本地机器(即127.0.0.1)?

我的Procfile只包含

web: gunicorn hellodjango.wsgi

谢谢!

这看起来是运行use gunicorn为带有foreman的WSGI应用程序提供服务时使用的默认IP地址。

在没有工头的情况下运行你的django应用程序,如下所示:

gunicorn hellodjango.wsgi:application

将其绑定到gunicorn的默认127.0.0.1:8000

2013-08-23 00:02:54 [45352] [INFO] Starting gunicorn 17.5
2013-08-23 00:02:54 [45352] [INFO] Listening at: http://127.0.0.1:8000 (45352)
2013-08-23 00:02:54 [45352] [INFO] Using worker: sync
2013-08-23 00:02:54 [45355] [INFO] Booting worker with pid: 45355

并在Procfile中指定要使用的绑定:

web: gunicorn -b 127.0.0.1:8000 hellodjango.wsgi

将其绑定到127.0.0.1:8000,或您指定的任何内容。

00:06:26 web.1  | started with pid 45384
00:06:26 web.1  | 2013-08-23 00:06:26 [45384] [INFO] Starting gunicorn 17.5
00:06:26 web.1  | 2013-08-23 00:06:26 [45384] [INFO] Listening at: http://127.0.0.1:8000 (45384)
00:06:26 web.1  | 2013-08-23 00:06:26 [45384] [INFO] Using worker: sync
00:06:26 web.1  | 2013-08-23 00:06:26 [45387] [INFO] Booting worker with pid: 45387

我很想知道工头告诉gunicorn使用0.0.0.0作为默认值的确切位置。

相关内容

  • 没有找到相关文章

最新更新