Diff for /loncom/Attic/srm.conf between versions 1.22 and 1.27

version 1.22, 2001/07/18 20:08:34 version 1.27, 2001/12/06 19:23:42
Line 1 Line 1
 ##  ##
 ## srm.conf -- Apache HTTP server configuration file  ## srm.conf -- Apache HTTP server configuration file
 ##  ##
   #
   # configured for LON-CAPA
   #
   # $Id$
   
 # With this document, you define the name space that users see of your http  # With this document, you define the name space that users see of your http
 # server.  This file also defines server settings which affect how requests are  # server.  This file also defines server settings which affect how requests are
Line 655  ErrorDocument     406 /adm/roles Line 659  ErrorDocument     406 /adm/roles
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
   <Location /adm/groupsort>
   PerlAccessHandler Apache::lonacc
   SetHandler perl-script
   PerlHandler Apache::groupsort
   ErrorDocument     403 /adm/login
   ErrorDocument  500 /adm/errorhandler
   </Location>
   
 <Location /adm/errorhandler>  <Location /adm/errorhandler>
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonerrorhandler  PerlHandler Apache::lonerrorhandler
 </Location>  </Location>
   
 # --------------------------------------------------------------- Backdoor Test  # ------------------------------------------------- Backdoor Adm Tests/Programs
   
   <Location /cgi-bin/loncron.pl>
   AuthName "LON Network Synchronization Handler"
   AuthType Basic
   AuthUserFile /home/httpd/lonTabs/htpasswd
   require user lonadm
   </Location>
   
   <Location /cgi-bin/metadata_keywords.pl>
   AuthName "LON Keyword Handler"
   AuthType Basic
   AuthUserFile /home/httpd/lonTabs/htpasswd
   require user lonadm
   </Location>
   
 <Location /adm/test>  <Location /adm/test>
 AuthName "LON Test Handler"  AuthName "LON Test Handler"
Line 671  SetHandler perl-script Line 697  SetHandler perl-script
 PerlAccessHandler Apache::lonacc  PerlAccessHandler Apache::lonacc
 PerlHandler Apache::lontest  PerlHandler Apache::lontest
 </Location>  </Location>
   
   # ------------------------------------------------------- Shutting down a child
   
   PerlChildExitHandler Apache::lonnet::goodbye
   

Removed from v.1.22  
changed lines
  Added in v.1.27


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>