SimpleHTTPServer with Python

如果需要提供臨時的 http service, 可以透過 Python 內建的 module: SimpleHTTPServer 來達成. python 真的很強大 ;) mkdir -p /tmp/tmp-www-root/
cd /tmp/tmp-www-root/
echo 'hello world' > index.html
python -m SimpleHTTPServer 80 # bind to port 80
如果要停止服務, 只要按下 ctrl+c 就可以了.

ref: this.

0 comments:

張貼留言