I need to password protect my primary ibay. and have created the following template
90PrimSecurity
# ------------------
# Primary ibay security
# ------------------
Options Indexes
Options +Includes
AllowOverride None
order deny,allow
deny from all
allow from 127.0.0.1 192.168.0.0/255.255.255.0
AuthName "Security Control"
AuthType Basic
AuthExternal pwauth
require user admin
# --------------
The template works ok but it asks everyone for the password both internal and external.
The other thing that I wanted to implement was multiple userid / passwords.
Any comments or suggestions.