From da5c6706874548e4b070110fe76740e655a13f71 Mon Sep 17 00:00:00 2001 From: Marco Dickert Date: Fri, 26 Feb 2016 16:50:28 +0100 Subject: [PATCH] fixed Readme.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8750ba3..f249bb0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The configuration array is located at the top of the script, so you can customiz Meanwhile I added a super simple authentication feature using the configuration keys `auth` and `auth_source`. You can configure it like this: ```php "auth" => 1, - "auth_source" => 'inline;admin:', + "auth_source" => 'inline;:', ``` In the example above the user and password are declared inline. You can also use a file (which should lie out of the $DocumentRoot of the webserver): ```php @@ -31,9 +31,9 @@ In the example above the user and password are declared inline. You can also use ``` The file should contain ONLY ONE LINE: ``` -admin: +: ``` -The password hash has to be a hash generated by PHPs `password_hash()` function. +The password hash has to be a hash generated by PHPs `password_hash()` function. The default credentials are "admin:admin". ## security information