djangodjango-facebook

Setup django test server with port forwarding


I want to setup django test server so it can be accessed through web address (mainly for facebook testing). For this I'm using the no-ip service wich works fine with apache. But when I try starting the test server on port 80 access from the same web URL gives Problem loading page.

I've already concluded that the router is properly configured (port forwarding works with apache) and that the test server is running locally.

So what should I do? Do you have any suggestions about developing django project with facebook integration?

Thanks!


Solution

  • Are you running python manage.py runserver? Try doing python manage.py runserver 192.168.1.2:80 (or whatever your IP is instead of 192.168.1.2).