~ $ python3 -m http.server
Serving HTTP on 0.0.0.0 port 8000 ...
$ ps -ef|grep http
pi 2430 1385 2 10:19 pts/0 00:00:00 python3 -m http.server
PC から http://[RaspberryPi の IPアドレス]:8000/ にアクセス :
$ mkdir ~/www
$ cd ~/www
$ vi index.html
$ python3 -m http.server
~/www/index.html のページが表示される
解説
「python3 -m http.server」を起動したディレクトリが,ホームページのルートディレクトリになる。,
|