Skip to content

Commit c203fdb

Browse files
authored
Update laravel.md on nixpacks example error while using laravel 12 (#275)
* Update laravel.md the comment after value causing this error: [28-Apr-2025 08:02:07] ERROR: [/assets/php-fpm.conf:8] unable to parse value for entry 'pm.max_children': is not a valid number (greater or equal than zero) [28-Apr-2025 08:02:07] ERROR: failed to load configuration file '/assets/php-fpm.conf' [28-Apr-2025 08:02:07] ERROR: FPM initialization failed * Update laravel.md
1 parent 19821fb commit c203fdb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/applications/laravel.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ group = www-data
137137
listen.owner = www-data
138138
listen.group = www-data
139139
pm = dynamic
140-
pm.max_children = 50 # To reduce memory/CPU usage, change to 5.
141-
pm.min_spare_servers = 4 # To reduce memory/CPU usage, change to 1.
142-
pm.max_spare_servers = 32 # To reduce memory/CPU usage, change to 3.
143-
pm.start_servers = 18 # To reduce memory/CPU usage, change to 2.
140+
pm.max_children = 50
141+
pm.min_spare_servers = 4
142+
pm.max_spare_servers = 32
143+
pm.start_servers = 18
144144
clear_env = no
145145
php_admin_value[post_max_size] = 35M
146146
php_admin_value[upload_max_filesize] = 30M

0 commit comments

Comments
 (0)