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

version 1.210, 2012/02/27 03:06:37 version 1.214, 2012/03/18 21:56:53
Line 40  Alias /prtspool/ /home/httpd/prtspool/ Line 40  Alias /prtspool/ /home/httpd/prtspool/
 Alias /captchaspool/ /home/httpd/captchaspool/  Alias /captchaspool/ /home/httpd/captchaspool/
 Alias /webdav/ /home/httpd/html/priv/  Alias /webdav/ /home/httpd/html/priv/
 ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"  ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
 DAVLockDB /home/httpd/webdav/DAVLock  <IfModule mod_dav_fs.c>
       DAVLockDB /home/httpd/webdav/DAVLock
   </IfModule>
   
 # ================================================================= Directories  # ================================================================= Directories
   
Line 52  PerlCleanupHandler Apache::lonacc::clean Line 54  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 280  ErrorDocument   500 /adm/errorhandler
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">  <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">
 AuthType Basic    <IfModule mod_dav.c>
 AuthName "LONCAPA username,domain"      <IfModule mod_ssl.c>
 Require valid-user        AuthType Basic
 SSLRequireSSL        AuthName "LONCAPA username,domain"
 PerlAuthenHandler Apache::lonwebdavauth        Require valid-user
 PerlAuthzHandler Apache::lonwebdavacc        SSLRequireSSL
 Dav On        PerlAuthenHandler Apache::lonwebdavauth
 DirectoryIndex index.missing        PerlAuthzHandler Apache::lonwebdavacc
 Options Indexes FollowSymLinks        Dav On
 ErrorDocument     403 /adm/nowebdav.html        DirectoryIndex index.missing
 ErrorDocument     404 /adm/notfound.html        Options Indexes FollowSymLinks
 ErrorDocument     406 /adm/unauthorized        ErrorDocument     403 /adm/nowebdav.html
 ErrorDocument     500 /adm/errorhandler        ErrorDocument     404 /adm/notfound.html
         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>
     </IfModule>
     <IfModule !mod_dav.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 679  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>
     <IfModule !mod_shib>
       PerlTypeHandler        Apache::lonnoshib
     </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.214


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