Skip to content

Commit 9d8a7f5

Browse files
committed
Add some clarification to Quick Tour Working with Environments
Also, for the session token: identify what the "weird" hex number is, and and replace "weird" with "long" (a more apt description).
1 parent a1b60ec commit 9d8a7f5

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

quick_tour/the_big_picture.rst

+8-5
Original file line numberDiff line numberDiff line change
@@ -385,16 +385,19 @@ is the developer's best friend.
385385
.. image:: /images/quick_tour/web_debug_toolbar.png
386386
:align: center
387387

388-
But what you see initially is only the tip of the iceberg; click on the weird
389-
hexadecimal number to reveal yet another very useful Symfony2 debugging tool:
390-
the profiler.
388+
But what you see initially is only the tip of the iceberg; click on the long
389+
hexadecimal number (the session token) to reveal yet another very useful
390+
Symfony2 debugging tool: the profiler.
391391

392392
.. image:: /images/quick_tour/profiler.png
393393
:align: center
394394

395395
Of course, you won't want to show these tools when you deploy your application
396396
to production. That's why you will find another front controller in the
397-
``web/`` directory (``app.php``), which is optimized for the production environment:
397+
``web/`` directory (``app.php``), which is optimized for the production environment.
398+
The ``AcmeDemoBundle`` is normally only available in the dev environment (see
399+
the note below), but if you were to add it to the production environment, you
400+
could go here:
398401

399402
.. code-block:: text
400403
@@ -407,7 +410,7 @@ And if you use Apache with ``mod_rewrite`` enabled, you can even omit the
407410
408411
http://localhost/Symfony/web/demo/hello/Fabien
409412
410-
Last but not least, on the production servers, you should point your web root
413+
Last but not least, on production servers, you should point your web root
411414
directory to the ``web/`` directory to secure your installation and have an
412415
even better looking URL:
413416

0 commit comments

Comments
 (0)