From f73133dd2c8b6dbb47ba518003aeddd526e3ed50 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 8 Oct 2015 12:06:06 +0200 Subject: [PATCH 1/2] Removed "http_basic" config from the login form cookbook --- cookbook/security/form_login_setup.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/cookbook/security/form_login_setup.rst b/cookbook/security/form_login_setup.rst index ea3981c7760..3b58d5e3240 100644 --- a/cookbook/security/form_login_setup.rst +++ b/cookbook/security/form_login_setup.rst @@ -29,7 +29,6 @@ First, enable form login under your firewall: firewalls: default: anonymous: ~ - http_basic: ~ form_login: login_path: /login check_path: /login_check @@ -47,7 +46,6 @@ First, enable form login under your firewall: - @@ -60,7 +58,6 @@ First, enable form login under your firewall: 'firewalls' => array( 'default' => array( 'anonymous' => null, - 'http_basic' => null, 'form_login' => array( 'login_path' => '/login', 'check_path' => '/login_check', From d019f83c7d72d9a4d1a30b8139694b8f2eabcb7e Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 11 Nov 2015 17:13:49 +0100 Subject: [PATCH 2/2] Removed an outdate paragraph --- cookbook/security/form_login_setup.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cookbook/security/form_login_setup.rst b/cookbook/security/form_login_setup.rst index 3b58d5e3240..6fea457d556 100644 --- a/cookbook/security/form_login_setup.rst +++ b/cookbook/security/form_login_setup.rst @@ -12,10 +12,6 @@ In this entry, you'll build a traditional login form. Of course, when the user logs in, you can load your users from anywhere - like the database. See :ref:`security-user-providers` for details. -This chapter assumes that you've followed the beginning of the -:doc:`security chapter ` and have ``http_basic`` authentication -working properly. - First, enable form login under your firewall: .. configuration-block::