The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::SiteControl::Radius - Raduis authentication module for SiteControl

SYNOPSIS

In Apache/mod_perl's configuration:

       PerlModule Apache::SiteControl
    
       <Location /sample>
       ...
          PerlSetVar SiteControlMethod Apache::SiteControl::Radius
       ...
       </Location>
    
       <FilesMatch "\.pl$">
        ...
        PerlSetVar RadiusSiteControlHost "localhost"
        PerlSetVar RadiusSiteControlSecret "mysecret"
        ...
       </FilesMatch>
    
       <Location /SampleLogin>
        ...
          PerlSetVar RadiusSiteControlHost "localhost"
          PerlSetVar RadiusSiteControlSecret "mysecret"
        ...
       </Location>

DESCRIPTION

Apache::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.

SEE ALSO

Apache::SiteControl

AUTHOR

This module was written by Tony Kay, <tkay@uoregon.edu>.

COPYRIGHT AND LICENSE