Simple HTTP server in Python
Monday, June 29th, 2009Reading blog comments about Meiga out there, I’ve found one particularly interesting. Python has an embedded HTTP server that can serve the current directory from a given port. It can be instanced for port 8282 simply issuing this command:
python -m SimpleHTTPServer 8282
The funny thing is that… it works on the N810 also!
More info about SimpleHTTPServer here.

