From 46f26df9b5e8fc6659f050ee1cf7ebb81dccef4a Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Sun, 13 Aug 2017 22:08:06 +0200 Subject: [PATCH] Correct MIME types in lighttpd, bump par2 to version v0.7.3 --- Dockerfile | 2 +- VERSION | 2 +- files/lighttpd.conf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b6ee221..398f62b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER Adrien Ferrand ENV BACKUPPC_VERSION 4.1.3 ENV BACKUPPC_XS_VERSION 0.56 ENV RSYNC_BPC_VERSION 3.0.9.8 -ENV PAR2_VERSION v0.7.2 +ENV PAR2_VERSION v0.7.3 RUN apk --no-cache add \ # Install backuppc build dependencies diff --git a/VERSION b/VERSION index d8c3741..400fbbe 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.3-6 +4.1.3-7 diff --git a/files/lighttpd.conf b/files/lighttpd.conf index 935bfad..1d98e88 100644 --- a/files/lighttpd.conf +++ b/files/lighttpd.conf @@ -5,7 +5,7 @@ server.document-root = "/srv/http" server.errorlog = "/var/log/lighttpd/error.log" dir-listing.activate = "enable" index-file.names = ( "index.html", "index.php", "index.cgi" ) -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", ".jpg" => "image/jpeg", ".png" => "image/png", ".gif" => "image/gif", ".css" => "text/css", ".js" => "text/javascript", "" => "application/octet-stream" ) server.modules = ( "mod_alias", "mod_cgi", "mod_auth", "mod_access", "mod_rewrite", "mod_redirect" )