diff options
Diffstat (limited to 'extra/lighttpd/lighttpd.conf')
-rw-r--r-- | extra/lighttpd/lighttpd.conf | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/extra/lighttpd/lighttpd.conf b/extra/lighttpd/lighttpd.conf index ed192352a..8ec790941 100644 --- a/extra/lighttpd/lighttpd.conf +++ b/extra/lighttpd/lighttpd.conf @@ -9,4 +9,14 @@ server.document-root = "/srv/http" server.errorlog = "/var/log/lighttpd/error.log" dir-listing.activate = "enable" index-file.names = ( "index.html" ) -mimetype.assign = ( ".html" => "text/html", ".txt" => "text/plain", ".jpg" => "image/jpeg", ".png" => "image/png", "" => "application/octet-stream" ) +mimetype.assign = ( + ".html" => "text/html", + ".txt" => "text/plain", + ".css" => "text/css", + ".js" => "application/x-javascript", + ".jpg" => "image/jpeg", + ".jpeg" => "image/jpeg", + ".gif" => "image/gif", + ".png" => "image/png", + "" => "application/octet-stream" + ) |