From 41b7868713455e418cccc977448956ce7a3ff606 Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Tue, 13 Jun 2023 13:20:26 +0200 Subject: [PATCH] fix: release the fpm handbrake it seems like php-fpm applys configs in aphabetical order, so that our fpm-tune was overwritten by the www.conf with default values. so let's go on highspeed now! :) --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index 0687f69..7e5647d 100644 --- a/compose.yml +++ b/compose.yml @@ -46,7 +46,7 @@ services: - db configs: - source: fpm_tune - target: /usr/local/etc/php-fpm.d/fpm-tune.conf + target: /usr/local/etc/php-fpm.d/zzz-fpm-tune.conf - source: entrypoint target: /custom-entrypoint.sh mode: 555