@@ -576,7 +576,7 @@ will be able to authenticate (e.g. login form, API token, etc).
576
576
Only one firewall is active on each request: Symfony uses the ``pattern `` key
577
577
to find the first match (you can also
578
578
:doc: `match by host or other things </security/firewall_restriction >`).
579
- Here, all " real" URLs are handled by the ``main `` firewall (no ``pattern `` key means
579
+ Here, all real URLs are handled by the ``main `` firewall (no ``pattern `` key means
580
580
it matches *all * URLs).
581
581
582
582
The ``dev `` firewall is really a fake firewall: it makes sure that you
@@ -593,11 +593,11 @@ you'll see that you're visiting a page behind the firewall in the toolbar:
593
593
Visiting a URL under a firewall doesn't necessarily require you to be authenticated
594
594
(e.g. the login form has to be accessible or some parts of your application
595
595
are public). On the other hand, all pages that you want to be *aware * of a logged in
596
- user have to be under the same firewall. So if you want to display a "You are logged in
597
- as ..." message on every page, they all have to be included in the same firewall.
596
+ user have to be under the same firewall. So if you want to display a * "You are logged in
597
+ as ..." * message on every page, they all have to be included in the same firewall.
598
598
599
- The same firewall can have many modes of authentication,
600
- in other words, it enables many ways to ask the question "Who are you?".
599
+ The same firewall can have many modes of authentication. In other words, it
600
+ enables many ways to ask the question * "Who are you?" * .
601
601
602
602
You'll learn how to restrict access to URLs, controllers or
603
603
anything else within your firewall in the :ref: `access control
0 commit comments