# This is a local server for local clients.
# We'll have no trouble here.
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from 192.168
# Front end is Auth configured and passes back the
# Basic header, we trust it and set ->user
{ package AcceptAll;
sub handler { return ($_[0]->get_basic_auth_pw)[0]; } 1;
}
PerlAuthenHandler AcceptAll
AuthName "MyName"
AuthType Basic
require valid-user