Firewall
How to register and authenticate my users?
Security Bundle
security:
providers:
default:
id: App\Security\UserProvider
firewalls:
main:
logout:
path: 'logout'
...User Authentication
security:
providers:
default:
id: App\Security\UserProvider
firewalls:
main:
webauthn: ~
logout:
path: '/logout'
access_control:
- { path: ^/login, roles: PUBLIC_ACCESS, requires_channel: 'https'}
- { path: ^/logout, roles: PUBLIC_ACCESS}Request Profile
User Registration
Authentication Attributes
Response Handlers
Request Options Handler
Creation Options Handler
Authentication Success Handler
Authentication Failure Handler
Last updated
Was this helpful?