[email protected] writes: > Apache requires root access to the server machine,
Only to access the privileged ports. > A small simple custom web server built with Python will likely... > You can run it on a non-privileged port if you do not have > root access to your server machine. You can do that with apache as well. Which is more complicated is a little bit subjective. I use both, and for something simple I generally find it easier to throw together a custom server with SocketServer.py, but it takes some familiarity with Python networking to be able to do that. -- http://mail.python.org/mailman/listinfo/python-list
