In debug mode, I can launch the django website, which can be accessed publicly (inside the local network):
python manage.py runserver 0.0.0.0:8000
So, is it possible to run it directly on port 80 (possibly with a domain), as a regular web server does? If so, is that a bad idea? I mean, is it better to use apache with mod_wsgi ?
source share