You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup.rst
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -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
0 commit comments