wallabag/app/config/security.yml

61 lines
1.8 KiB
YAML
Raw Normal View History

2015-01-22 07:30:07 +00:00
security:
encoders:
FOS\UserBundle\Model\UserInterface: sha512
2015-01-22 07:30:07 +00:00
role_hierarchy:
ROLE_ADMIN: ROLE_USER
2015-01-31 14:14:10 +00:00
ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ]
2015-01-22 07:30:07 +00:00
providers:
2015-01-31 14:14:10 +00:00
administrators:
entity: { class: WallabagUserBundle:User, property: username }
2015-08-18 09:08:45 +00:00
fos_userbundle:
id: fos_user.user_provider.username
2015-01-22 07:30:07 +00:00
# the main part of the security, where you can set up firewalls
# for specific sections of your app
firewalls:
# disables authentication for assets and the profiler, adapt it according to your needs
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
oauth_token:
pattern: ^/oauth/v2/token
security: false
api:
pattern: /api/.*
fos_oauth: true
stateless: true
2015-09-29 12:52:46 +00:00
anonymous: true
2015-01-31 14:14:10 +00:00
login_firewall:
pattern: ^/login$
anonymous: ~
secured_area:
2015-08-18 09:08:45 +00:00
pattern: ^/
form_login:
2015-08-18 09:08:45 +00:00
provider: fos_userbundle
csrf_token_generator: security.csrf.token_manager
2015-08-18 09:08:45 +00:00
anonymous: true
2015-08-12 10:27:12 +00:00
remember_me:
secret: "%secret%"
2015-08-12 10:27:12 +00:00
lifetime: 31536000
path: /
domain: ~
logout:
path: /logout
target: /
2015-01-31 14:14:10 +00:00
2015-01-22 07:30:07 +00:00
access_control:
2015-02-02 11:54:14 +00:00
- { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY }
2015-01-31 14:14:10 +00:00
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
2015-03-28 20:43:49 +00:00
- { path: /(unread|starred|archive).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
2015-01-31 14:14:10 +00:00
- { path: ^/, roles: ROLE_USER }