> #1. is to read the FAQ, the .htacess methods are well covered in there.
>
> #2. is to use a servlet framework such as Dash
> <http://www.working-dogs.com/dash/> that make it easy to implement a
> database backed security model.
I do mine by inserting something like the following in httpd.conf:
<Location /servlets/<whateverzone>>
Options None
AllowOverride AuthConfig
AuthUserFile /usr/local/apache/security/<whateverzone>/users
AuthGroupFile /usr/local/apache/sercurity/<whateverzone>/groups
AuthName "Secure Servlets In <whateverzone>"
AuthType Basic
require valid-user
</Location>
I thought that .htaccess didn't work? Anyway, the above works for me.
Note: We need to all thank jon for being so responsive, even with the
constant frustration of referring people to the FAQ. Thanks!
Frank
[EMAIL PROTECTED]
-- --------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
READ THE FAQ!!!! <http://java.apache.org/faq/>
Archives and Other: <http://java.apache.org/main/mail.html/>
Problems?: [EMAIL PROTECTED]