8000 feature #14982 [Security] Added debug:firewall command (TimoBakx) · symfony/symfony-docs@6615f1c · GitHub
[go: up one dir, main page]

Skip to content

Commit 6615f1c

Browse files
committed
feature #14982 [Security] Added debug:firewall command (TimoBakx)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Security] Added debug:firewall command Documentation for symfony/symfony#39326 Commits ------- 7512515 [Security] Added debug:firewall command
2 parents 3799eb4 + 7512515 commit 6615f1c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

reference/configuration/security.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,26 @@ depend on the authentication mechanism, which can be any of these:
472472
http_digest:
473473
# ...
474474
475+
You can view actual information about the firewalls in your application with
476+
the ``debug:firewall`` command:
477+
478+
.. code-block:: terminal
479+
480+
# displays a list of firewalls currently configured for your application
481+
$ php bin/console debug:firewall
482+
483+
# displays the details of a specific firewall
484+
$ php bin/console debug:firewall main
485+
486+
# displays the details of a specific firewall, including detailed information
487+
# about the event listeners for the firewall
488+
$ php bin/console debug:firewall main --include-listeners
489+
490+
.. versionadded:: 5.3
491+
492+
The ``debug:firewall`` command was introduced in Symfony 5.3.
493+
494+
475495
.. _reference-security-firewall-form-login:
476496

477497
``form_login`` Authentication

0 commit comments

Comments
 (0)
0