diff --git a/book/security.rst b/book/security.rst index 2f3ed0f30a6..1fdb79d2a43 100644 --- a/book/security.rst +++ b/book/security.rst @@ -128,9 +128,9 @@ A) Configuring how your Users will Authenticate ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The main job of a firewall is to configure *how* your users will authenticate. -Will they use a login form? Http Basic? An API token? All of the above? +Will they use a login form? HTTP basic authentication? An API token? All of the above? -Let's start with Http Basic (the old-school pop-up) and work up from there. +Let's start with HTTP basic authentication (the old-school prompt) and work up from there. To activate this, add the ``http_basic`` key under your firewall: .. configuration-block:: @@ -265,7 +265,7 @@ user to be logged in to access this URL: You'll learn more about this ``ROLE_ADMIN`` thing and denying access later in the :ref:`security-authorization` section. -Great! Now, if you go to ``/admin``, you'll see the HTTP Basic popup: +Great! Now, if you go to ``/admin``, you'll see the HTTP basic auth prompt: .. image:: /images/book/security_http_basic_popup.png :align: center @@ -593,8 +593,8 @@ before inserting them into the database? Don't worry, see D) Configuration Done! ~~~~~~~~~~~~~~~~~~~~~~ -Congratulations! You now have a working authentication system that uses Http -Basic and loads users right from the ``security.yml`` file. +Congratulations! You now have a working authentication system that uses HTTP +basic auth and loads users right from the ``security.yml`` file. Your next steps depend on your setup: