====== Python http.server ====== * [[https://docs.python.org/ko/3/library/http.server.html|http.server — HTTP 서버 — Python 3.10.1 문서]] * [[python:3|Python 3]]용 간단한 HTTP Server ===== 실행 ===== * 기본옵션 : port 기정 * ''%%-b/--bind 127.0.0.1'' : localhost 에만 bind. ''0.0.0.0''은 전체. * ''%%-d/--directory /path/to/home'' : 파일제공 디렉토리 python3 -m http.server python3 -m http.server 8080 -d /var/www