Skip to content

[Security] Add host option #3454

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 21, 2014
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion book/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ that looks like the following:
Let's look briefly at how security works and how each part of the configuration
comes into play.

.. versionadded:: 2.4
Support for restricting security firewalls to a specific host was added in
Symfony 2.4.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't mention the host option in this article. So you can remove the versionadded directive here.


How Security Works: Authentication and Authorization
----------------------------------------------------

Expand Down Expand Up @@ -1098,7 +1102,7 @@ Thanks to the SensioFrameworkExtraBundle, you can also secure your controller us
// ...
}

For more information, see the
For more information, see the
:doc:`FrameworkExtraBundle documentation </bundles/SensioFrameworkExtraBundle/annotations/security>`.

Securing other Services
Expand Down Expand Up @@ -2164,6 +2168,7 @@ Learn more from the Cookbook
* :doc:`Blacklist users by IP address with a custom voter </cookbook/security/voters>`
* :doc:`Access Control Lists (ACLs) </cookbook/security/acl>`
* :doc:`/cookbook/security/remember_me`
* :doc:`How to Restrict Firewalls to a Specific Host </cookbook/security/host_restriction>`

.. _`FOSUserBundle`: https://github.com/FriendsOfSymfony/FOSUserBundle
.. _`implement the \Serializable interface`: http://php.net/manual/en/class.serializable.php
Expand Down
6 changes: 6 additions & 0 deletions reference/configuration/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Full Default Configuration
The following is the full default configuration for the security system.
Each part will be explained in the next section.

.. versionadded:: 2.4
Support for restricting security firewalls to a specific host was added in
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"was introduced" instead of "was added"

Symfony 2.4.

.. configuration-block::

.. code-block:: yaml
Expand Down Expand Up @@ -98,6 +102,8 @@ Each part will be explained in the next section.
# Examples:
somename:
pattern: .*
# restrict the firewall for a specific host
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[...] to a specific host

host: admin\.example\.com
request_matcher: some.service.id
access_denied_url: /foo/error403
access_denied_handler: some.service.id
Expand Down