@@ -158,16 +158,20 @@ the ``create-project`` command:
158158Running the Symfony Application
159159-------------------------------
160160
161- Symfony leverages the internal PHP web server (available since PHP 5.4) to run
162- applications while developing them. Therefore, running a Symfony application is
163- a matter of browsing to the project directory and executing this command:
161+ In production servers, Symfony applications use web servers such as Apache or
162+ Nginx (see :doc: `configuring a web server to run Symfony </setup/web_server_configuration >`).
163+ However, in your local development machine you can also use the web server
164+ provided by Symfony, which in turn uses the built-in web server provided by PHP.
165+
166+ First, :doc: `install the Symfony Web Server </setup/built_in_web_server >` and
167+ then, execute this command:
164168
165169.. code-block :: terminal
166170
167171 $ cd my_project_name/
168172 $ php bin/console server:run
169173
170- Then, open your browser and access the ``http://localhost:8000/ `` URL to see the
174+ Open your browser and access the ``http://localhost:8000/ `` URL to see the
171175Welcome Page of Symfony:
172176
173177.. image :: /_images/quick_tour/welcome.png
@@ -184,7 +188,7 @@ pressing ``Ctrl+C`` from the terminal or command console.
184188
185189.. tip ::
186190
187- PHP's internal web server is great for developing, but should **not ** be
191+ Symfony's web server is great for developing, but should **not ** be
188192 used on production. Instead, use Apache or Nginx.
189193 See :doc: `/setup/web_server_configuration `.
190194
0 commit comments