ローカルでのWebサイト作成に役立つPythonのWebサーバ SimpleHTTPServer / http.server

23 May 2013

Python 2

$ python -m SimpleHTTPServer 8000

Python 3

$ python -m http.server 8000

起動時のディレクトリがDocumentRoot control + Z で終了

ポート転送

sudo ipfw add 100 fwd 127.0.0.1,8000 tcp from any to me 80

もとに戻すには $ sudo ipfw list で通し番号を確認して $ sudo ipfw delete *****