[python] SimpleHTTPServer
Problem
로컬에 서버가 설치되어 있지 않지만 간단하게(3초 안에) 웹서버를 띄우고 싶다
Solution
- python 이 설치되어 있다면, DOCUMENT_ROOT 경로에서
$ python -m SimpleHTTPServer
를 실행한다. - 브라우져에서
http://127.0.0.1:8000
로 붙어 본다.
Ref.
http://www.pythonforbeginners.com/modules-in-python/how-to-use-simplehttpserver/
Comments