[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] Securing Hobbit from visitors
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] Securing Hobbit from visitors
- From: Buchan Milne <bgmilne (at) staff.telkomsa.net>
- Date: Wed, 12 Mar 2008 15:11:31 +0200
- Cc: "Josh Luthman" <josh (at) imaginenetworksllc.com>
- References: <961092e10803112158l78a51010xf274a6f0c5ea8ad6 (at) mail.gmail.com> <200803121021.56843.bgmilne (at) staff.telkomsa.net> <961092e10803120514n6be55fa5j914318feb74d610b (at) mail.gmail.com>
- User-agent: KMail/1.9.9
On Wednesday 12 March 2008 14:14:41 Josh Luthman wrote:
> This is what I have in httpd.conf that makes me login three times (you can
> tell which three, obviously =)
>
> Alias /hobbit/ "/hobbitdir/server/www/"
> <Directory "/hobbitdir/server/www">
> Options Indexes FollowSymLinks Includes MultiViews
> Order allow,deny
> Allow from all
> AuthUserFile /hobbitdir/server/etc/hobbitpasswd
> AuthType Basic
> AuthName "Hobbit Monitoring1"
> Require valid-user
> </Directory>
>
> ScriptAlias /hobbit-cgi/ "/hobbitdir/cgi-bin/"
> <Directory "/hobbitdir/cgi-bin">
> AllowOverride None
> Options ExecCGI Includes
> Order allow,deny
> Allow from all
> AuthUserFile /hobbitdir/server/etc/hobbitpasswd
> AuthType Basic
> AuthName "Hobbit Monitoring2"
> Require valid-user
> </Directory>
>
> ScriptAlias /hobbit-seccgi/ "/hobbitdir/cgi-secure/"
> <Directory "/hobbitdir/cgi-secure">
> AllowOverride None
> Options ExecCGI Includes
> Order allow,deny
> Allow from all
>
> AuthUserFile /hobbitdir/server/etc/hobbitpasswd
> AuthGroupFile /hobbitdir/server/etc/hobbitgroups
> AuthType Basic
> AuthName "Hobbit Monitoring3"
> Require valid-user
> Require group group4admin
> </Directory>
If you use the same AuthName, most likely you users should not need to log in
more than once. Was there a reason you used different ones.
Regards,
Buchan