| 32 | Note: If you're using Apache 2.2 or later, you'll also need to insert directives |
| 33 | to prevent Apache from using other available auth modules. The full list of |
| 34 | such modules is: |
| 35 | |
| 36 | AuthBasicAuthoritative |
| 37 | AuthDefaultAuthoritative |
| 38 | AuthzLDAPAuthoritative |
| 39 | AuthzDBMAuthoritative |
| 40 | AuthzDefaultAuthoritative |
| 41 | AuthzGroupFileAuthoritative |
| 42 | AuthzOwnerAuthoritative |
| 43 | AuthzUserAuthoritative |
| 44 | |
| 45 | To tell Apache not to use a particular module, add a line for each of your |
| 46 | installed auth modules to your Apache configuration, like this: |
| 47 | |
| 48 | AuthBasicAuthoritative Off |
| 49 | |