Serving the current directory via Python’s SimpleHTTP Module
A very simple and nice way for sharing files or testing HTML-sites is Python's SimpleHTTPServer Module. The following command allows to access the current working directory to be accessed via HTTP on port 8080: python -m SimpleHTTPServer 8080 Of course this only works if the serving machine and port is reachable from the requesting ...