Use Python WebServer on port 8000 …
python -m SimpleHTTPServer
By default, it starts off the server on ‘8000’, you can change this with:
python -m SimpleHTTPServer 9090
which starts the server on 9090, and can be accessed via the browser or any HTTP client.