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

version 1.15, 2001/05/21 20:26:04 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 309  SetHandler perl-script Line 313  SetHandler perl-script
 PerlHandler Apache::lonratsrv  PerlHandler Apache::lonratsrv
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/\~.*\/ratparms$">  <Location /adm/ratparms>
   PerlAccessHandler       Apache::lonacc
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonratparms  PerlHandler Apache::lonratparms
 </LocationMatch>  ErrorDocument     403 /adm/login
   ErrorDocument  500 /adm/errorhandler
   </Location>
   
 # --------------------------------------------- Resource Space Content Handlers  # --------------------------------------------- Resource Space Content Handlers
   
Line 346  SetHandler perl-script Line 353  SetHandler perl-script
 PerlHandler Apache::lonxml  PerlHandler Apache::lonxml
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/(res|\~).*\.(problem|exam|quiz|assess|survey|form)$">  <LocationMatch "^/(res|\~).*\.(problem|exam|quiz|assess|survey|form|library)$">
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonhomework  PerlHandler Apache::lonhomework
 </LocationMatch>  </LocationMatch>
   
   <LocationMatch "^/adm/wrapper/">
   PerlAccessHandler       Apache::lonacc
   SetHandler perl-script
   PerlHandler Apache::lonwrapper
   ErrorDocument     403 /adm/login
   ErrorDocument  500 /adm/errorhandler
   </LocationMatch>
   
 # -------------------------------------------------------------- Admin Programs  # -------------------------------------------------------------- Admin Programs
   
 <Location /adm/statistics>  <Location /adm/statistics>
Line 473  ErrorDocument     406 /adm/unauthorized. Line 488  ErrorDocument     406 /adm/unauthorized.
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
 <LocationMatch "^(/\~.*/|/adm/pubdir)$">  <LocationMatch "^/\~.*/$">
 PerlAccessHandler       Apache::lonacc  PerlAccessHandler       Apache::loncacc
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonpubdir  PerlHandler Apache::lonpubdir
 ErrorDocument     403 /adm/login  ErrorDocument     403 /adm/login
Line 483  ErrorDocument     406 /adm/unauthorized. Line 498  ErrorDocument     406 /adm/unauthorized.
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </LocationMatch>  </LocationMatch>
   
   <Location /adm/pubdir>
   PerlAccessHandler       Apache::lonacc
   SetHandler perl-script
   PerlHandler Apache::lonpubdir
   ErrorDocument     403 /adm/login
   ErrorDocument     404 /adm/notfound.html
   ErrorDocument     406 /adm/unauthorized.html
   ErrorDocument  500 /adm/errorhandler
   </Location>
   
 <Location /adm/retrieve>  <Location /adm/retrieve>
 PerlAccessHandler       Apache::lonacc  PerlAccessHandler       Apache::lonacc
 SetHandler perl-script  SetHandler perl-script
Line 493  ErrorDocument     406 /adm/unauthorized. Line 518  ErrorDocument     406 /adm/unauthorized.
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
   <Location /adm/cfile>
   PerlAccessHandler       Apache::lonacc
   SetHandler perl-script
   PerlHandler Apache::loncfile
   ErrorDocument     403 /adm/login
   ErrorDocument     404 /adm/notfound.html
   ErrorDocument     406 /adm/unauthorized.html
   ErrorDocument  500 /adm/errorhandler
   </Location>
   
 <Location /adm/diff>  <Location /adm/diff>
 PerlAccessHandler       Apache::lonacc  PerlAccessHandler       Apache::lonacc
 SetHandler perl-script  SetHandler perl-script
Line 558  ErrorDocument     406 /adm/roles Line 593  ErrorDocument     406 /adm/roles
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
 <Location /adm/mydesk>  
 PerlAccessHandler       Apache::lonacc  
 SetHandler perl-script  
 PerlHandler Apache::lonmydesk  
 ErrorDocument     403 /adm/login  
 ErrorDocument  500 /adm/errorhandler  
 </Location>  
   
 <Location /adm/printout>  <Location /adm/printout>
 PerlAccessHandler       Apache::lonacc  PerlAccessHandler       Apache::lonacc
 SetHandler perl-script  SetHandler perl-script
Line 632  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 648  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.15  
changed lines
  Added in v.1.27


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