Correct MIME types in lighttpd, bump par2 to version v0.7.3

This commit is contained in:
Adrien Ferrand 2017-08-13 22:08:06 +02:00
parent 8dd18f1fc8
commit 46f26df9b5
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ MAINTAINER Adrien Ferrand <ferrand.ad@gmail.com>
ENV BACKUPPC_VERSION 4.1.3 ENV BACKUPPC_VERSION 4.1.3
ENV BACKUPPC_XS_VERSION 0.56 ENV BACKUPPC_XS_VERSION 0.56
ENV RSYNC_BPC_VERSION 3.0.9.8 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 \ RUN apk --no-cache add \
# Install backuppc build dependencies # Install backuppc build dependencies

View File

@ -1 +1 @@
4.1.3-6 4.1.3-7

View File

@ -5,7 +5,7 @@ server.document-root = "/srv/http"
server.errorlog = "/var/log/lighttpd/error.log" server.errorlog = "/var/log/lighttpd/error.log"
dir-listing.activate = "enable" dir-listing.activate = "enable"
index-file.names = ( "index.html", "index.php", "index.cgi" ) 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" ) server.modules = ( "mod_alias", "mod_cgi", "mod_auth", "mod_access", "mod_rewrite", "mod_redirect" )