From: Patrick Canterino Date: Mon, 19 Jan 2026 18:30:06 +0000 (+0100) Subject: Docker image: Updated PHP to 8.3 and removed mime-types.conf from lighttpd.conf X-Git-Tag: 4.7.1~3 X-Git-Url: https://git.p6c8.net/jirafeau/jirafeau.git/commitdiff_plain/37bcb9abfc0066306a60fecd6ea89879f245fa3f?hp=d5079555c270e18a398c9575754e7e719bd1a72b Docker image: Updated PHP to 8.3 and removed mime-types.conf from lighttpd.conf PHP 8.1 is end-of-life mime-types.conf is not available in recent versions of lighttpd Fixed issue #45 --- diff --git a/Dockerfile b/Dockerfile index 6bf9788..fd437e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.1-fpm-alpine +FROM php:8.3-fpm-alpine LABEL org.opencontainers.image.authors="jerome@jutteau.fr" ARG INI="php" diff --git a/docker/lighttpd.conf b/docker/lighttpd.conf index 680280f..5acb592 100644 --- a/docker/lighttpd.conf +++ b/docker/lighttpd.conf @@ -5,12 +5,10 @@ var.statedir = "/var/lib/lighttpd" server.port = 80 server.modules = ( "mod_access", -# "mod_usertrack", "mod_expire", "mod_accesslog" ) -include "mime-types.conf" include "mod_fastcgi_fpm.conf" server.username = "lighttpd"