File: README.Debian

package info (click to toggle)
libapache2-mod-auth-plain 2.0.54
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: ansic: 252; sh: 45; makefile: 25
file content (34 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
libapache2-mod-auth-plain for Debian
------------------------------------


USAGE

  An example .htaccess file:

  -----BEGIN-----
  Deny from all
  AuthType basic
  AuthName "Plain htpasswd"
  AuthBasicProvider plain
  AuthPlainUserFile .htpasswd
  Require valid-user
  Satisfy any
  -----END-----

  Note that AuthPlainUserFile can be relative to the directory which contains
  .htaccess file.

SECURITY

  The .htpasswd file shouldn't be readable by WWW. Be sure you use something like:
  
  <Files ~ "^\.ht">
      Order allow,deny
      Deny from all
  </Files>

  The passwords are sent by net as clear text. You should use SSL to protect
  them.

 -- Piotr Roszatycki <dexter@debian.org>  Thu, 30 Oct 2003 14:49:47 +0100