Skip to content

Serveur web python3

bash
python3 -m http.server

Serveur web python2.7

bash
python2.7 -m SimpleHTTPServer

Serveur web PHP

bash
php -S 0.0.0.0:8000

Serveur web Ruby

bash
ruby -run -ehttpd . -p8000