comparison app/config/security.yml.http-dml.dist @ 0:493bcb69166c

added public content
author Daniel Wolff
date Tue, 09 Feb 2016 20:54:02 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:493bcb69166c
1 security:
2 firewalls:
3 secured_area:
4 pattern: ^/
5 anonymous: false
6 http_basic:
7 realm: "Please enter login and password that were sent you via email"
8
9 access_control:
10 - { path: ^/, roles: ROLE_USER }
11 # Include the following line to also secure the /admin path itself
12 # - { path: ^/admin$, roles: ROLE_ADMIN }
13
14 providers:
15 in_memory:
16 memory:
17 users:
18 dml: { password: dev, roles: 'ROLE_USER' }
19 encoders:
20 Symfony\Component\Security\Core\User\User: plaintext