From 889249804f44136fc608bbc6699f47932825d440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 2 Feb 2015 12:54:14 +0100 Subject: disable authentication for the moment --- app/config/security.yml | 59 +++++++++++++++++++++++++------------------------ 1 file changed, 30 insertions(+), 29 deletions(-) (limited to 'app/config') diff --git a/app/config/security.yml b/app/config/security.yml index f4fefe2e..c1b0fb77 100644 --- a/app/config/security.yml +++ b/app/config/security.yml @@ -23,36 +23,37 @@ security: pattern: ^/login$ anonymous: ~ - secured_area: - pattern: ^/ - anonymous: ~ - form_login: - login_path: /login - - use_forward: false - - check_path: /login_check - - post_only: true - - always_use_default_target_path: true - default_target_path: / - target_path_parameter: redirect_url - use_referer: true - - failure_path: null - failure_forward: false - - username_parameter: _username - password_parameter: _password - - csrf_parameter: _csrf_token - intention: authenticate - - logout: - path: /logout - target: / +# secured_area: +# pattern: ^/ +# anonymous: ~ +# form_login: +# login_path: /login +# +# use_forward: false +# +# check_path: /login_check +# +# post_only: true +# +# always_use_default_target_path: true +# default_target_path: / +# target_path_parameter: redirect_url +# use_referer: true +# +# failure_path: null +# failure_forward: false +# +# username_parameter: _username +# password_parameter: _password +# +# csrf_parameter: _csrf_token +# intention: authenticate +# +# logout: +# path: /logout +# target: / access_control: + - { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY } - { path: ^/, roles: ROLE_USER } -- cgit v1.2.3