1000 search results

40 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 14
firewalls:
// ... lines 16 - 20
main:
// ... line 22
guard:
authenticators:
- app.security.login_form_authenticator
// ... lines 26 - 40
See Code Block in Script
40 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 14
firewalls:
// ... lines 16 - 20
main:
// ... line 22
guard:
authenticators:
- AppBundle\Security\LoginFormAuthenticator
// ... lines 26 - 40
See Code Block in Script
41 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 38
access_control:
# - { path: ^/admin, roles: ROLE_ADMIN }
See Code Block in Script
41 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 38
access_control:
- { path: ^/easyadmin, roles: ROLE_ADMIN }
See Code Block in Script
41 lines | config/packages/security.yaml
// ... lines 1 - 2
security:
encoders:
AppBundle\Entity\User: bcrypt
role_hierarchy:
ROLE_ADMIN: [ROLE_MANAGE_GENUS, ROLE_ALLOWED_TO_SWITCH]
// ... lines 9 - 14
firewalls:
// ... lines 16 - 20
main:
anonymous: ~
guard:
authenticators:
- AppBundle\Security\LoginFormAuthenticator
logout:
path: /logout
switch_user: ~
logout_on_user_change: true
// ... lines 31 - 38
access_control:
# - { path: ^/admin, roles: ROLE_ADMIN }
See Code Block in Script
41 lines | config/packages/security.yaml
// ... lines 1 - 2
security:
encoders:
App\Entity\User: bcrypt
// ... lines 6 - 10
providers:
our_users:
entity: { class: App\Entity\User, property: email }
// ... line 14
firewalls:
// ... lines 16 - 20
main:
// ... line 22
guard:
authenticators:
- App\Security\LoginFormAuthenticator
// ... lines 26 - 41
See Code Block in Script
46 lines | app/config/security.yml
security:
// ... lines 2 - 14
firewalls:
secured_area:
// ... lines 17 - 25
form_login:
// ... lines 27 - 33
csrf_token_generator: security.csrf.token_manager
// ... lines 35 - 46
See Code Block in Script
25 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 9
firewalls:
# disables authentication for assets and the profiler, adapt it according to your needs
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
// ... lines 15 - 25
See Code Block in Script
25 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 9
firewalls:
// ... lines 11 - 15
main:
anonymous: ~
# activate different ways to authenticate
# http_basic: ~
# http://symfony.com/doc/current/book/security.html#a-configuring-how-your-users-will-authenticate
# form_login: ~
# http://symfony.com/doc/current/cookbook/security/form_login_setup.html
See Code Block in Script
28 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 9
firewalls:
// ... lines 11 - 15
main:
// ... line 17
guard:
authenticators:
- app.security.login_form_authenticator
# activate different ways to authenticate
// ... lines 22 - 28
See Code Block in Script
31 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 9
firewalls:
// ... lines 11 - 15
main:
// ... lines 17 - 21
logout:
path: /logout
// ... lines 24 - 31
See Code Block in Script
28 lines | app/config/security.yml
// ... lines 1 - 2
security:
# http://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers
providers:
our_users:
entity: { class: AppBundle\Entity\User, property: email }
// ... lines 9 - 28
See Code Block in Script
33 lines | app/config/security.yml
// ... lines 1 - 2
security:
encoders:
AppBundle\Entity\User: bcrypt
// ... lines 6 - 33
See Code Block in Script
35 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 33
access_control:
- { path: ^/admin, roles: ROLE_USER }
See Code Block in Script
35 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 33
access_control:
- { path: ^/admin, roles: ROLE_ADMIN }
See Code Block in Script
36 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 33
access_control:
# - { path: ^/admin, roles: ROLE_ADMIN }
See Code Block in Script
40 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 14
firewalls:
// ... lines 16 - 20
main:
// ... lines 22 - 28
switch_user: ~
// ... lines 30 - 40
See Code Block in Script
40 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 6
role_hierarchy:
ROLE_ADMIN: [ROLE_MANAGE_GENUS, ROLE_ALLOWED_TO_SWITCH]
// ... lines 9 - 40
See Code Block in Script
39 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 6
role_hierarchy:
ROLE_ADMIN: [ROLE_MANAGE_GENUS]
// ... lines 9 - 39
See Code Block in Script
40 lines | app/config/security.yml
// ... lines 1 - 2
security:
// ... lines 4 - 14
firewalls:
// ... lines 16 - 20
main:
anonymous: ~
guard:
authenticators:
- app.security.login_form_authenticator
// ... lines 26 - 40
See Code Block in Script