Apache2::SiteControl::Radius - Raduis authentication module for SiteControl
In Apache/mod_perl's configuration:
PerlModule Apache2::SiteControl
<Location /sample>
...
PerlSetVar SiteControlMethod Apache2::SiteControl::Radius
...
</Location>
<FilesMatch "\.pl$">
...
PerlSetVar RadiusSiteControlHost "localhost"
PerlSetVar RadiusSiteControlSecret "mysecret"
...
</FilesMatch>
<Location /SampleLogin>
...
PerlSetVar RadiusSiteControlHost "localhost"
PerlSetVar RadiusSiteControlSecret "mysecret"
...
</Location>
Apache2::SiteControl::Radius uses Authen::Radius to do the actual authentication
of login attempts for the SiteControl system. See the SiteControl
documentation for a complete apache configuration example. The synopsis above
shows the configuration parameters for the radius module only, which is not a
stand-alone thing.
The proper variables for the apache configuration of this modules
are shown in the synopsis above. You must set the radius host and shared
secret in all sections that will use the SiteControl system for
authentication.
This module was written by Tony Kay, <tkay@uoregon.edu>.