Jordan Dyckes
Jordan Dyckes

Reputation: 31

Making Symfony 2 project cookieless

I am trying to make Symfony 2 project cookieless as I have no requirement for cookies on my site.

Upvotes: 0

Views: 138

Answers (1)

Alec
Alec

Reputation: 2164

Enable stateless firewall to disable cookies.

# app/config/security.yml
security:
    firewalls:
        main:
            stateless:  true

Further documentation here.

Upvotes: 3

Related Questions