mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-14 04:51:08 +00:00
3bd65991ad
Useful for api client which required some information. We might add more inside them in the future. The endpoint /api/version should be avoided now as it contains not so much information rather the version.
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
security:
|
|
encoders:
|
|
FOS\UserBundle\Model\UserInterface: sha512
|
|
|
|
role_hierarchy:
|
|
ROLE_ADMIN: ROLE_USER
|
|
ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ]
|
|
|
|
providers:
|
|
administrators:
|
|
entity:
|
|
class: WallabagUserBundle:User
|
|
property: username
|
|
fos_userbundle:
|
|
id: fos_user.user_provider.username_email
|
|
|
|
# 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
|
|
anonymous: true
|
|
provider: fos_userbundle
|
|
|
|
login_firewall:
|
|
logout_on_user_change: true
|
|
pattern: ^/login$
|
|
anonymous: ~
|
|
|
|
secured_area:
|
|
logout_on_user_change: true
|
|
pattern: ^/
|
|
form_login:
|
|
provider: fos_userbundle
|
|
csrf_token_generator: security.csrf.token_manager
|
|
|
|
anonymous: true
|
|
remember_me:
|
|
secret: "%secret%"
|
|
lifetime: 31536000
|
|
path: /
|
|
domain: ~
|
|
|
|
logout:
|
|
path: /logout
|
|
target: /
|
|
|
|
access_control:
|
|
- { path: ^/api/(doc|version|info|user), roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: /(unread|starred|archive|all).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/locale, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: /tags/(.*).xml$, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/share, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/settings, roles: ROLE_SUPER_ADMIN }
|
|
- { path: ^/annotations, roles: ROLE_USER }
|
|
- { path: ^/users, roles: ROLE_SUPER_ADMIN }
|
|
- { path: ^/, roles: ROLE_USER }
|