head	1.16;
access;
symbols;
locks
	nobody:1.16; strict;
comment	@# @;


1.16
date	99.05.18.01.42.38;	author nobody;	state Exp;
branches;
next	1.15;

1.15
date	99.05.18.01.37.29;	author nobody;	state Exp;
branches;
next	1.14;

1.14
date	99.04.21.18.34.03;	author nobody;	state Exp;
branches;
next	1.13;

1.13
date	99.04.21.18.33.52;	author nobody;	state Exp;
branches;
next	1.12;

1.12
date	99.04.01.18.54.24;	author nobody;	state Exp;
branches;
next	1.11;

1.11
date	99.04.01.17.53.21;	author nobody;	state Exp;
branches;
next	1.10;

1.10
date	99.03.23.19.46.28;	author nobody;	state Exp;
branches;
next	1.9;

1.9
date	99.03.10.02.46.09;	author httpd;	state Exp;
branches;
next	1.8;

1.8
date	99.03.09.04.13.47;	author httpd;	state Exp;
branches;
next	1.7;

1.7
date	99.03.04.23.13.06;	author httpd;	state Exp;
branches;
next	1.6;

1.6
date	99.02.24.16.04.49;	author httpd;	state Exp;
branches;
next	1.5;

1.5
date	99.02.23.09.48.55;	author httpd;	state Exp;
branches;
next	1.4;

1.4
date	99.02.19.19.29.05;	author httpd;	state Exp;
branches;
next	1.3;

1.3
date	99.02.19.19.28.33;	author httpd;	state Exp;
branches;
next	1.2;

1.2
date	99.02.19.19.26.45;	author httpd;	state Exp;
branches;
next	1.1;

1.1
date	99.02.19.19.26.17;	author httpd;	state Exp;
branches;
next	;


desc
@null
@


1.16
log
@null
@
text
@IDependOn-Set: 1
IDependOn-Set: 166
IDependOn-Set: 2
IDependOn-Set: 22
IDependOn-Set: 28
IDependOn-Set: 7
LastModifiedSecs: 924719641
Parent: 7
SequenceNumber: 10
Title: How do I setup basic authentication with Apache and Apache JServ?
Part: 0
Author-Set: jon@@working-dogs.com
LastModifiedSecs: 919452480
Type: monospaced
Lines: 14
You need to use the <Location> tag in Apache instead of the <Directory> tag. 
See the Apache documentation http://www.apache.org/ for more information on 
the use of the Location tag.

Here is an example that worked for one Apache JServ user:

<Location /servlet/msgboard>
  AuthType Basic
  AuthName msgboard_access
  AuthUserFile /usr/local/apache/conf
  <Limit GET POST>
    require user some_user
  </Limit>
</Location>
EndPart: 0
Part: 1
Author-Set: vt@@vp.net
LastModifiedSecs: 919872240
Type: 
Lines: 4
You don't always have to use the <Limit ...></Limit> directive. Remember,
it restricts access to the _selected methods_ (and forgets about HEAD and
OPTIONS, at least as for Apache 1.3.3, while the Auth* just simply
restrict the access.
EndPart: 1
Part: 2
Author-Set: bknights@@earthlink.net
LastModifiedSecs: 920952780
Type: 
Lines: 1
For those new to all this, on Linux (and other Unices?) you can create the password file using /usr/bin/htpasswd.
EndPart: 2
@


1.15
log
@null
@
text
@d5 1
a5 1
IDependOn-Set: 27
@


1.14
log
@null
@
text
@d2 1
a5 1
IDependOn-Set: 53
@


1.13
log
@null
@
text
@d7 1
a7 1
LastModifiedSecs: 924719632
d9 1
a9 1
SequenceNumber: 9
a47 11
Part: 3
Author-Set: anonymous
HideAttributions: 1
LastModifiedSecs: 922989180
Type: 
Lines: 4
Subcategories:


Answers in this category:
EndPart: 3
@


1.12
log
@null
@
text
@d7 1
a7 1
LastModifiedSecs: 922992864
d9 1
a9 1
SequenceNumber: 8
a58 10
Part: 4
Author-Set: anonymous
HideAttributions: 1
Type: directory
Lines: 4
Subcategories:


Answers in this category:
EndPart: 4
@


1.11
log
@null
@
text
@d7 1
a7 1
LastModifiedSecs: 922989200
d9 1
a9 1
SequenceNumber: 7
a49 1
DateOfPart: 1999-Apr-01  9:53am
d51 2
d59 10
@


1.10
log
@null
@
text
@d7 1
a7 1
LastModifiedSecs: 922218387
d9 1
a9 1
SequenceNumber: 6
d50 1
a51 1
Type: directory
@


1.9
log
@null
@
text
@d5 1
a5 1
IDependOn-Set: 34
d7 1
a7 1
LastModifiedSecs: 920952827
d9 1
a9 1
SequenceNumber: 5
d48 10
@


1.8
log
@null
@
text
@d43 2
a44 1
DateOfPart: 1999-Mar-08  8:13pm
@


1.7
log
@null
@
text
@d7 1
a7 1
LastModifiedSecs: 919872289
d9 1
a9 1
SequenceNumber: 4
d41 6
@


1.6
log
@null
@
text
@d4 2
d33 2
a34 1
DateOfPart: 1999-Feb-24  8:04am
@


1.5
log
@null
@
text
@d5 1
a5 1
LastModifiedSecs: 919452545
d7 1
a7 1
SequenceNumber: 3
d29 9
@


1.4
log
@null
@
text
@a10 1
DateOfPart: 1999-Feb-19 11:29am
@


1.3
log
@null
@
text
@d5 1
a5 1
LastModifiedSecs: 919452512
d7 1
a7 1
SequenceNumber: 2
d11 2
a12 1
DateOfPart: 1999-Feb-19 11:28am
d14 4
a17 2
Lines: 12
You need to use the <Location> tag in Apache instead of the <Directory> tag. See the Apache documentation http://www.apache.org/ for more information on the use of the Location tag.
@


1.2
log
@null
@
text
@d5 1
a5 1
LastModifiedSecs: 919452405
d7 1
a7 1
SequenceNumber: 1
d9 18
@


1.1
log
@null
@
text
@d5 1
a5 1
LastModifiedSecs: 919452377
d7 2
a8 2
SequenceNumber: 0
Title: New Item
@
