From e97d2d7b1d0d6c40e2829f42140d05634bd9c0af Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 12 Sep 2025 13:52:10 +0100 Subject: [PATCH 1/2] Bumping version to 7.5.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a2931d3..7501d50 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.5.0 \ No newline at end of file +7.5.1 \ No newline at end of file From 1a7da8515fafd2dadd4afaa7258a474e6912bdf7 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 12 Sep 2025 13:53:11 +0100 Subject: [PATCH 2/2] Restoring setting user / group to www for FPM --- overlay/etc/bf/init.d/23-www-conf.nu | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/overlay/etc/bf/init.d/23-www-conf.nu b/overlay/etc/bf/init.d/23-www-conf.nu index 340e2a7..2737069 100644 --- a/overlay/etc/bf/init.d/23-www-conf.nu +++ b/overlay/etc/bf/init.d/23-www-conf.nu @@ -4,8 +4,10 @@ bf env load # Apply any overrides to www.conf export def main [] { - # PHP-FPM configuration file + # set user / group to www let fpm_conf = bf env PHP_FPM_CONF + let www = "www" + bf-php ini insert_or_replace_values_in_file $fpm_conf {user: $www, group: $www} # load any override files and apply them let fpm_override = bf env PHP_FPM_OVERRIDE_D