I have developed a django application that I now need to deploy on Windows Server (which may also be hosting various other web application I don't know about). The application I've developed will only be used internally.
Please excuse the naive question -- I'm completely new to Windows Server, but...
There are lots of articles around about running Django under IIS, and references to e.g. FastCGI. Do I actually need to do that though? On my personal windows machine I just installed Django and my app works fine accessed via port 8000. What stops me just doing the same on Windows Server in a production environment? What's gained by actually running under IIS?
Thanks!