Nov
22
2010
Posted by ebal at
07:52:10
in planet_ellak, planet_Sysadmin
When i want to setup a simple http server, i use python with SimpleHTTPServer module.
But in python3 this module is been merged with http.server.
So if you are using python 3, then you should use something like this:
python -m http.server
If you want to use a high port (perhaps you are a simple user) then type something like this:
python -m http.server 8888