RSS: Blog | Wiki | Forum

Configuration de lighttpd

Un article de Easyneuf.

Sommaire

[modifier] Configuration de serveur Web lighttpd

Voici un petit tutorial sur comment configurer et démarrer lighttpd sur l'opengate.

[modifier] Créer le fichier de configuration lighttpd.conf :

En mode console :

[modifier] Création du fichier

su

Entrez votre mot de passe, puis

cd /etc

nano lighttpd.conf

[modifier] Copiez ceci dans le fichier lighttpd.conf

(n'oubliez pas de changer le répertoire racine du serveur)

         server.document-root = "/chemin/vers/le/repertoire/racine/du/serveur/"
         server.port = 8080
         index-file.names = ( "index.php", "index.html", "index.htm", "default.htm" )
         server.dir-listing = "enable"
         mimetype.assign             = (
         ".pdf"          =>      "application/pdf",
         ".sig"          =>      "application/pgp-signature",
         ".spl"          =>      "application/futuresplash",
         ".class"        =>      "application/octet-stream",
         ".ps"           =>      "application/postscript",
         ".torrent"      =>      "application/x-bittorrent",
         ".dvi"          =>      "application/x-dvi",
         ".gz"           =>      "application/x-gzip",
         ".pac"          =>      "application/x-ns-proxy-autoconfig",
         ".swf"          =>      "application/x-shockwave-flash",
         ".tar.gz"       =>      "application/x-tgz",
         ".tgz"          =>      "application/x-tgz",
         ".tar"          =>      "application/x-tar",
         ".zip"          =>      "application/zip",
         ".mp3"          =>      "audio/mpeg",
         ".m3u"          =>      "audio/x-mpegurl",
         ".wma"          =>      "audio/x-ms-wma",
         ".wax"          =>      "audio/x-ms-wax",
         ".ogg"          =>      "application/ogg",
         ".wav"          =>      "audio/x-wav",
         ".gif"          =>      "image/gif",
         ".jpg"          =>      "image/jpeg",
         ".jpeg"         =>      "image/jpeg",
         ".png"          =>      "image/png",
         ".xbm"          =>      "image/x-xbitmap",
         ".xpm"          =>      "image/x-xpixmap",
         ".xwd"          =>      "image/x-xwindowdump",
         ".css"          =>      "text/css",
         ".html"         =>      "text/html",
         ".htm"          =>      "text/html",
         ".js"           =>      "text/javascript",
         ".asc"          =>      "text/plain",
         ".c"            =>      "text/plain",
         ".cpp"          =>      "text/plain",
         ".log"          =>      "text/plain",
         ".conf"         =>      "text/plain",
         ".text"         =>      "text/plain",
         ".txt"          =>      "text/plain",
         ".dtd"          =>      "text/xml",
         ".xml"          =>      "text/xml",
	  ".mpeg"         =>      "video/mpeg",
         ".mpg"          =>      "video/mpeg",
	  ".mov"          =>      "video/quicktime",
	  ".qt"           =>      "video/quicktime",
	  ".avi"          =>      "video/x-msvideo",
	  ".asf"          =>      "video/x-ms-asf",
	  ".asx"          =>      "video/x-ms-asf",
	  ".wmv"          =>      "video/x-ms-wmv",
	  ".bz2"          =>      "application/x-bzip",
	  ".tbz"          =>      "application/x-bzip-compressed-tar",
	  ".tar.bz2"      =>      "application/x-bzip-compressed-tar"
	 )


Redémarrer la gate

[modifier] Lancer le serveur

lighttpd -f /etc/lighttpd.conf

[modifier] Accéder à votre page web

Le port a été réglé sur 8080, donc pour accéder au serveur via firefox tapez dans la barre d'adresse :

127.0.0.1:8080