Blog PostSimple Webserver in Python

Sometimes I need a simple webserver for serving files for my kickstart installations. I have found a simple solution:

python -m SimpleHTTPServer 80

This creates a simple Webserver on port 80 and its root path is the directory it ran from. For more details about it, visit python docs: http://docs.python.org/library/simplehttpserver.html

Comments

Discuss with me and others You need to sign in to post comments