Installation under Centos 6.2 running?
  • After some compiling, mental gymnastics and a we bit of insanity, this appears to be running

    after I fire up the server I get  running under 127.0.0.0:8000

    how do I switch that to a publicly accessible ip address?  Is there something in the settings.py I am missing or is it in the django config?




  • 2 Comments sorted by
  • Are you using built-in server to run it? If so, you should run:
     django-admin runserver <public ip>:<port number>
    or for example:
     django-admin runserver 4.4.4.4:8080

  • That worked!!!! Thank you..