Diff for /loncom/loncapa_apache.conf between versions 1.210 and 1.212

version 1.210, 2012/02/27 03:06:37 version 1.212, 2012/03/05 20:51:25
Line 52  PerlCleanupHandler Apache::lonacc::clean Line 52  PerlCleanupHandler Apache::lonacc::clean
 PerlAuthenHandler Apache::checkauthen  PerlAuthenHandler Apache::checkauthen
 PerlSetVar lonOtherAuthen no  PerlSetVar lonOtherAuthen no
   
   <IfModule mod_shib>
       PerlAuthenHandler Apache::lonshibauth
       PerlSetVar lonOtherAuthen yes
       PerlSetVar lonOtherAuthenType Shibboleth
   </IfModule>
   
 #PerlWarn On  #PerlWarn On
 <LocationMatch "^/+res/adm/pages/[^/]+\.(gif|png)$">  <LocationMatch "^/+res/adm/pages/[^/]+\.(gif|png)$">
 PerlAuthenHandler 'sub { return OK }'   PerlAuthenHandler 'sub { return OK }' 
Line 272  ErrorDocument   500 /adm/errorhandler Line 278  ErrorDocument   500 /adm/errorhandler
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">  <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">
 AuthType Basic    <IfModule mod_ssl.c>
 AuthName "LONCAPA username,domain"      AuthType Basic
 Require valid-user      AuthName "LONCAPA username,domain"
 SSLRequireSSL      Require valid-user
 PerlAuthenHandler Apache::lonwebdavauth      SSLRequireSSL
 PerlAuthzHandler Apache::lonwebdavacc      PerlAuthenHandler Apache::lonwebdavauth
 Dav On      PerlAuthzHandler Apache::lonwebdavacc
 DirectoryIndex index.missing      Dav On
 Options Indexes FollowSymLinks      DirectoryIndex index.missing
 ErrorDocument     403 /adm/nowebdav.html      Options Indexes FollowSymLinks
 ErrorDocument     404 /adm/notfound.html      ErrorDocument     403 /adm/nowebdav.html
 ErrorDocument     406 /adm/unauthorized      ErrorDocument     404 /adm/notfound.html
 ErrorDocument     500 /adm/errorhandler      ErrorDocument     406 /adm/unauthorized
       ErrorDocument     500 /adm/errorhandler
     </IfModule>
     <IfModule !mod_ssl.c>
       <IfModule mod_rewrite.c>
           RewriteEngine on
           RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]
       </IfModule>
     </IfModule>
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/+raw.*">  <LocationMatch "^/+raw.*">
Line 655  SetHandler perl-script Line 669  SetHandler perl-script
 PerlHandler Apache::migrateuser  PerlHandler Apache::migrateuser
 </Location>  </Location>
   
   <Location /adm/sso>
     <IfModule mod_shib>
       AuthType shibboleth
       ShibUseEnvironment On
       ShibRequestSetting requireSession 1
       ShibRequestSetting redirectToSSL 443
       require valid-user
       PerlAuthzHandler       Apache::lonshibacc
       PerlAuthzHandler       Apache::lonacc
     </IfModule>
   </Location>
   
 <Location /adm/annotations>  <Location /adm/annotations>
 AuthType LONCAPA  AuthType LONCAPA
 Require valid-user  Require valid-user

Removed from v.1.210  
changed lines
  Added in v.1.212


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