@@ -158,16 +158,20 @@ the ``create-project`` command:
158
158
Running the Symfony Application
159
159
-------------------------------
160
160
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:
164
168
165
169
.. code-block :: terminal
166
170
167
171
$ cd my_project_name/
168
172
$ php bin/console server:run
169
173
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
171
175
Welcome Page of Symfony:
172
176
173
177
.. image :: /_images/quick_tour/welcome.png
@@ -184,7 +188,7 @@ pressing ``Ctrl+C`` from the terminal or command console.
184
188
185
189
.. tip ::
186
190
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
188
192
used on production. Instead, use Apache or Nginx.
189
193
See :doc: `/setup/web_server_configuration `.
190
194
0 commit comments