(2015-03-08) Python で簡易HTTPサーバーを起こすことができます。
Python 2系
$ python2 -m SimpleHTTPServer 8080
Python 3系
$ python3 -m http.server 8080