# httpd ## Configuration minimale : ~~~ chroot "/var/www" server "default" { listen on * port 80 root "/htdocs" } ~~~ ## Administration Vérifier la configuration : ~~~ # httpd -nf /etc/httpd.conf ~~~ Lancer le démon : ~~~ # httpd ~~~ Stopper le démon (gruik) : ~~~ # pkill -9 httpd ~~~