I've been following the tutorial on https://devcenter.heroku.com/articles/django#declare-process-types-with-procfile. It went smoothly except for one thing that bothers me.
After starting foreman I should see the following:
$ 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)
However, I get:
Starting gunicorn 17.5
Listening at: http://0.0.0.0:5000
How can I change it so that it listens only to my local machine (ie. 127.0.0.1)?
My Procfile contains only
web: gunicorn hellodjango.wsgi
thanks!