Petit serveur de pages statiques sur sa machine perso...

2011-11-29

Installation d’apache :

$ apt-get install apache2 $ cd /etc/apache2/mods-enabled/ $ sudo ln -s ../mods-available/userdir.conf . $ sudo ln -s ../mods-available/userdir.load . $ sudo /etc/init.d/apache2 reload

Pages statiques :

$ mkdir ~/public_html $ echo ‘hello’ > ~/public_html/hello.html

Ouvrir le browser

[http://127.0.0.1/~me/hello.html](http://127.0.0.1/~me/hello.html)

:)