I am trying to set up routes and authorizations on my Symfony2 app so that I can have the index and show pages avaliable to users with the role ROLE_READ_ONLY. I created this role because I don't want anonymous users to be able to see anything.
Here's what I've done so far... created a role called ROLE_READ_ONLY and assigned that role to a user. I have changed all the routes so that the index page for each entity has the pattern /list (otherwise, I wasn't sure how to distinguish this from ^/ ). In the security.yml file I have included the following:
firewalls:
main:
pattern: ^/
form_login:
login_path: /login
check_path: /login_check
logout: true
security: true
anonymous: true
role_hierarchy:
ROLE_STD_USER: ROLE_READ_ONLY
ROLE_ADMIN: ROLE_STD_USER
access_control:
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY}
- { path: ^/admin, role: ROLE_ADMIN }
- { path: ^/show, role: ROLE_READ_ONLY }
- { path: ^/list, role: ROLE_READ_ONLY }
- { path: ^/, role: ROLE_STD_USER }
If I try to login as my read-only user, I get "Access Denied" no matter where I try to go.
It seems like the answer must be something obvious, so don't worry if your solution is embarrasingly simple.