48 lines
1.9 KiB
YAML
48 lines
1.9 KiB
YAML
security:
|
|
password_hashers:
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
|
|
providers:
|
|
app_user_provider:
|
|
entity:
|
|
class: App\Entity\User
|
|
property: username
|
|
firewalls:
|
|
dev:
|
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
security: false
|
|
main:
|
|
stateless: false
|
|
provider: app_user_provider
|
|
entry_point: jwt
|
|
json_login:
|
|
check_path: auth
|
|
provider: app_user_provider
|
|
username_path: username
|
|
password_path: password
|
|
success_handler: lexik_jwt_authentication.handler.authentication_success
|
|
failure_handler: lexik_jwt_authentication.handler.authentication_failure
|
|
jwt: ~
|
|
refresh_jwt:
|
|
check_path: refresh_token
|
|
|
|
access_control:
|
|
- { path: ^/$, roles: PUBLIC_ACCESS } # Allows accessing the Swagger UI
|
|
- { path: ^/docs, roles: PUBLIC_ACCESS } # Allows accessing the Swagger UI docs
|
|
- { path: ^/auth/login, roles: PUBLIC_ACCESS }
|
|
- { path: ^/opengnsys/rest, roles: PUBLIC_ACCESS }
|
|
- { path: ^/og-repository/webhook, roles: PUBLIC_ACCESS }
|
|
- { path: ^/og-lives/install/webhook, roles: PUBLIC_ACCESS }
|
|
- { path: ^/auth/refresh, roles: PUBLIC_ACCESS }
|
|
- { path: ^/menu-browser, roles: PUBLIC_ACCESS }
|
|
- { path: ^/menu/, roles: PUBLIC_ACCESS }
|
|
- { path: ^/, roles: IS_AUTHENTICATED_FULLY }
|
|
|
|
when@test:
|
|
security:
|
|
password_hashers:
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
|
|
algorithm: auto
|
|
cost: 4 # Lowest possible value for bcrypt
|
|
time_cost: 3 # Lowest possible value for argon
|
|
memory_cost: 10 # Lowest possible value for argon
|