This is my security setting for my Symfony2 project:
security: providers: main: users: asa: { pasword: test, roles: ROLE_USER } firewalls: application: pattern: /.* http_basic: true security: true logout: true
Despite the fact that I followed the documentation, configure the user, require authentication for the entire site, it still allows me to access it as an anonymous user. Logs say "Populated SecurityContext with anonymous token"
I am using the latest sandbox version where ".config" has been removed from "security.config"
source share