From 9b45a862fb1c49326eee946ad8ff815cbf14b78a Mon Sep 17 00:00:00 2001 From: EL Mehdi EL MAIS Date: Sat, 2 Aug 2025 14:23:12 +0100 Subject: [PATCH] Add note about PHP-FPM detection in Symfony local server --- setup/symfony_cli.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/symfony_cli.rst b/setup/symfony_cli.rst index e0e05d951d3..7b20c871558 100644 --- a/setup/symfony_cli.rst +++ b/setup/symfony_cli.rst @@ -155,7 +155,7 @@ Enabling PHP-FPM PHP-FPM must be installed locally for the Symfony server to utilize. When the server starts, it checks for ``web/index_dev.php``, ``web/index.php``, -``public/app_dev.php``, ``public/app.php`` in that order. If one is found, the +``public/app_dev.php``, ``public/app.php``, ``public/index.php`` in that order. If one is found, the server will automatically start with PHP-FPM enabled. Otherwise the server will start without PHP-FPM and will show a ``Page not found`` page when trying to access a ``.php`` file in the browser.