6 commandes pour créer un serveur HTTP

Python3

python2 –m SimpleHTTPServer 9999

Python3

python3 -m http.server 9999

PHP

php -S 127.0.0.1:9999

Ruby

ruby -run -e httpd . -p 9999

Perl

 perl -MIO::All -e 'io(":9999")->fork->accept->(sub { $_[0] < io(-x $1 ? "./$1 |" : $1) if /^GET \/(.*) / })' 

Netcat

# sert un fichier unique
while true ; do nc -l 9999 < index.html ; done