这看起来是当您运行 use gunicorn 以使用工头为 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
我有兴趣确切地找到工头告诉 gunicorn0.0.0.0
用作默认值的位置。