Skip to content

configure CSRF protection under framework.form #5855

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions book/service_container.rst
Original file line number Diff line number Diff line change
Expand Up @@ -431,8 +431,8 @@ invokes the service container extension inside the FrameworkBundle:
# app/config/config.yml
framework:
secret: xxxxxxxxxx
form: true
csrf_protection: true
form:
csrf_protection: ~
router: { resource: "%kernel.root_dir%/config/routing.yml" }
# ...

Expand Down
4 changes: 2 additions & 2 deletions quick_tour/the_architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ or PHP. Have a look at this sample of the default Symfony configuration:
router:
resource: "%kernel.root_dir%/config/routing.yml"
strict_requirements: "%kernel.debug%"
form: true
csrf_protection: true
form:
csrf_protection: ~
validation: { enable_annotations: true }
templating: { engines: ['twig'] }
default_locale: "%locale%"
Expand Down