Skip to content

Commit a72cd02

Browse files
authored
Update README.md
1 parent 1df1a77 commit a72cd02

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The module doesn’t make Authentication by it self, but verify if Authenticatio
1313

1414
## Phase 1 : The login Form
1515

16-
Authentication is made by a login form page.
16+
`Authentication` is made by a login form page.
1717

1818
This login page must authenticate the user with any authenticate source (ldap, /etc/password, file, database....) accessible to language of the page (php, perl, java... an ldap login page sample in php are in samples directory).
1919

@@ -29,13 +29,13 @@ After the user is logged, the Auth MemCookie module check on each protected page
2929

3030
When authenticating a request Auth MemCookie module walks through the following steps:
3131

32-
1. Get the `session id`. The `session id` is stored in a cookie (by default named `AuthMemCookie`).
32+
1. Get the **`session id`**. The `session id` is stored in a cookie (by default named `AuthMemCookie`).
3333

34-
2. Get the `session data`. Auth MemCookie module fetches `session data` by looking up the session id on the [memcached](http://memcached.org/) server.
34+
2. Get the **`session data`**. Auth MemCookie module fetches **`session data`** by looking up the session id on the [memcached](http://memcached.org/) server.
3535

36-
3. Verify the `remote ip`. Auth MemCookie module checks the ip address stored in the `session data` against the ip address of the current request. This step is optional, and can be disabled by setting the `Auth_memCookie_MatchIP` option to no.
36+
3. Verify the **`remote ip`**. Auth MemCookie module checks the ip address stored in the **`session data`** against the ip address of the current request. This step is optional, and can be disabled by setting the **`Auth_memCookie_MatchIP`** option to no.
3737

38-
4. Get username and groups from `session data`. The username is stored in the `UserName` field in the `session data` and the groups the user is a member of is stored in the Groups field.
38+
4. Get username and groups from **`session data`**. The username is stored in the **`UserName`** field in the **`session data`** and the groups the user is a member of is stored in the Groups field.
3939

4040
5. Check username and groups against [`Require`](http://httpd.apache.org/docs/2.0/mod/core.html#require) configuration directives.
4141

0 commit comments

Comments
 (0)