Diff for /loncom/loncapa_apache.conf between versions 1.213 and 1.215.2.2

version 1.213, 2012/03/06 00:53:51 version 1.215.2.2, 2012/05/26 14:53: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 278  ErrorDocument   500 /adm/errorhandler Line 280  ErrorDocument   500 /adm/errorhandler
 </LocationMatch>  </LocationMatch>
   
 <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">  <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">
   <IfModule mod_ssl.c>    <IfModule mod_dav.c>
     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
   </IfModule>        ErrorDocument     500 /adm/errorhandler
   <IfModule !mod_ssl.c>      </IfModule>
     <IfModule mod_rewrite.c>      <IfModule !mod_ssl.c>
         <IfModule mod_rewrite.c>
         RewriteEngine on          RewriteEngine on
         RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]          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>
   </IfModule>    </IfModule>
 </LocationMatch>  </LocationMatch>
Line 499  ErrorDocument     403 /adm/login Line 509  ErrorDocument     403 /adm/login
 ErrorDocument     500 /adm/errorhandler  ErrorDocument     500 /adm/errorhandler
 </Location>  </Location>
   
 <Location /adm/indexcourse>  
 AuthType LONCAPA  
 Require valid-user  
 PerlAuthzHandler       Apache::lonacc  
 SetHandler perl-script  
 PerlHandler Apache::lonindexcourse  
 ErrorDocument     403 /adm/login  
 ErrorDocument     500 /adm/errorhandler  
 </Location>  
   
 <Location /adm/statistics>  <Location /adm/statistics>
 AuthType LONCAPA  AuthType LONCAPA
 Require valid-user  Require valid-user
Line 552  ErrorDocument     403 /adm/login Line 552  ErrorDocument     403 /adm/login
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
 <Location /adm/pickresource>  <Location /adm/remote>
 AuthType LONCAPA  AuthType LONCAPA
 Require valid-user  Require valid-user
 PerlAuthzHandler       Apache::lonacc  PerlAuthzHandler       Apache::lonacc
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonpickresource  PerlHandler Apache::lonremote
 ErrorDocument     403 /adm/login  ErrorDocument     403 /adm/login
 ErrorDocument     500 /adm/errorhandler  ErrorDocument     500 /adm/errorhandler
 </Location>  </Location>
Line 613  ErrorDocument     403 /adm/login Line 613  ErrorDocument     403 /adm/login
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
   <Location /adm/dependencies>
   AuthType LONCAPA
   Require valid-user
   PerlAuthzHandler       Apache::lonacc
   SetHandler perl-script
   PerlHandler Apache::londependencies
   ErrorDocument     403 /adm/login
   ErrorDocument     406 /adm/roles
   ErrorDocument     500 /adm/errorhandler
   </Location>
   
 <Location /adm/login>  <Location /adm/login>
 SetHandler perl-script  SetHandler perl-script
 PerlHandler Apache::lonlogin  PerlHandler Apache::lonlogin
Line 1290  SetHandler perl-script Line 1301  SetHandler perl-script
 PerlHandler Apache::lonwishlistdisplay  PerlHandler Apache::lonwishlistdisplay
 ErrorDocument     403 /adm/login  ErrorDocument     403 /adm/login
 ErrorDocument     406 /adm/roles  ErrorDocument     406 /adm/roles
 ErrorDocument  500 /adm/errorhandler  ErrorDocument     500 /adm/errorhandler
 </Location>  </Location>
   
 <Location /adm/setblock>  <Location /adm/setblock>

Removed from v.1.213  
changed lines
  Added in v.1.215.2.2


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