As suggested on the mailing list back in late 2016 this removes the
hardcoded mimetype values from lighttpd.conf and installs mime.conf
provided by upstream instead. You can still have your own mime.conf by
putting it in projectroot/etc/lighttpd/conf.d of course.

Suggested-by: Clemens Gruber <clemens.gru...@pqgruber.com>
Suggested-by: Michael Olbrich <m.olbr...@pengutronix.de>
Signed-off-by: Alexander Dahl <a...@thorsis.com>
---
 projectroot/etc/lighttpd/lighttpd.conf | 54 ----------------------------------
 rules/lighttpd.make                    | 14 +++++++++
 2 files changed, 14 insertions(+), 54 deletions(-)

diff --git a/projectroot/etc/lighttpd/lighttpd.conf 
b/projectroot/etc/lighttpd/lighttpd.conf
index c6f1e64..fa2f60e 100644
--- a/projectroot/etc/lighttpd/lighttpd.conf
+++ b/projectroot/etc/lighttpd/lighttpd.conf
@@ -13,60 +13,6 @@ server.modules               = (
        @MODULES@
 )
 
-# mimetype mapping
-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"          =>      "audio/x-wav",
-       ".wav"          =>      "audio/x-wav",
-       ".gif"          =>      "image/gif",
-       ".jpg"          =>      "image/jpeg",
-       ".jpeg"         =>      "image/jpeg",
-       ".png"          =>      "image/png",
-       ".svg"          =>      "image/svg+xml",
-       ".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",
-       ".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"
-)
-
 index-file.names = ( "index.html" )
 
 include "conf.d/*.conf"
diff --git a/rules/lighttpd.make b/rules/lighttpd.make
index 8b52267..0e3f20d 100644
--- a/rules/lighttpd.make
+++ b/rules/lighttpd.make
@@ -64,6 +64,18 @@ LIGHTTPD_CONF_OPT    := \
        --$(call ptx/wwo, PTXCONF_LIGHTTPD_LUA)-lua
 
 # ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+$(STATEDIR)/lighttpd.install:
+       @$(call targetinfo)
+       @cd $(LIGHTTPD_DIR) && \
+               $(LIGHTTPD_PATH) $(LIGHTTPD_MAKE_ENV) \
+               $(MAKE) $(LIGHTTPD_INSTALL_OPT)
+       install -D -m 644 "$(LIGHTTPD_DIR)/doc/config/conf.d/mime.conf" \
+               "$(LIGHTTPD_PKGDIR)/etc/lighttpd/conf.d/mime.conf"
+       @$(call touch)
+
+# ----------------------------------------------------------------------------
 # Target-Install
 # ----------------------------------------------------------------------------
 
@@ -118,6 +130,8 @@ endif
        @$(call install_copy, lighttpd, 0, 0, 0755, /etc/lighttpd/conf.d)
        @$(call install_replace, lighttpd, /etc/lighttpd/lighttpd.conf, \
                @MODULES@, $(LIGHTTPD_MODULE_STRING))
+       @$(call install_alternative, lighttpd, 0, 0, 0644, \
+               /etc/lighttpd/conf.d/mime.conf)
 
 ifdef PTXCONF_LIGHTTPD_MOD_FASTCGI_PHP
        @$(call install_alternative, lighttpd, 0, 0, 0644, \
-- 
2.1.4


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

Reply via email to