]> git.p6c8.net - jirafeau/pcanterino.git/commitdiff
Docker image: Updated PHP to 8.3 and removed mime-types.conf from lighttpd.conf
authorPatrick Canterino <patrick@patrick-canterino.de>
Mon, 19 Jan 2026 18:30:06 +0000 (19:30 +0100)
committerPatrick Canterino <patrick@patrick-canterino.de>
Mon, 19 Jan 2026 18:30:06 +0000 (19:30 +0100)
PHP 8.1 is end-of-life
mime-types.conf is not available in recent versions of lighttpd

Fixed issue #45

Dockerfile
docker/lighttpd.conf

index 6bf9788ffeeb7d996fb49da713544d9a51fc6b91..fd437e672151ba36e11d222ca73c7d3ff015b78b 100644 (file)
@@ -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"
 
index 680280fc8907a036b0ba75c85937aede1de9d540..5acb592a9dc845f912d0142e3a26a3939a0ad3d2 100644 (file)
@@ -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"

patrick-canterino.de