Diff for /loncom/loncapa_apache.conf between versions 1.207 and 1.211

version 1.207, 2011/12/25 20:41:59 version 1.211, 2012/02/28 15:14:25
Line 38  ExtendedStatus On Line 38  ExtendedStatus On
 Alias /zipspool/ /home/httpd/zipspool/  Alias /zipspool/ /home/httpd/zipspool/
 Alias /prtspool/ /home/httpd/prtspool/  Alias /prtspool/ /home/httpd/prtspool/
 Alias /captchaspool/ /home/httpd/captchaspool/  Alias /captchaspool/ /home/httpd/captchaspool/
   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
   
 # ================================================================= Directories  # ================================================================= Directories
   
Line 269  ErrorDocument     406 /adm/unauthorized Line 271  ErrorDocument     406 /adm/unauthorized
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </LocationMatch>  </LocationMatch>
   
   <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">
     <IfModule mod_ssl.c>
       AuthType Basic
       AuthName "LONCAPA username,domain"
       Require valid-user
       SSLRequireSSL
       PerlAuthenHandler Apache::lonwebdavauth
       PerlAuthzHandler Apache::lonwebdavacc
       Dav On
       DirectoryIndex index.missing
       Options Indexes FollowSymLinks
       ErrorDocument     403 /adm/nowebdav.html
       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>
   </LocationMatch>
   
 <LocationMatch "^/+raw.*">  <LocationMatch "^/+raw.*">
 PerlAccessHandler Apache::lonracc  PerlAccessHandler Apache::lonracc
 </LocationMatch>  </LocationMatch>
Line 1246  ErrorDocument     406 /adm/roles Line 1272  ErrorDocument     406 /adm/roles
 ErrorDocument  500 /adm/errorhandler  ErrorDocument  500 /adm/errorhandler
 </Location>  </Location>
   
   <Location /adm/setblock>
   AuthType LONCAPA
   Require valid-user
   PerlAuthzHandler       Apache::lonacc
   SetHandler             perl-script
   PerlHandler            Apache::lonblockingmenu
   ErrorDocument     403 /adm/login
   ErrorDocument     406 /adm/roles
   ErrorDocument     500 /adm/errorhandler
   </Location>
   
 <Location /adm/blockingstatus>  <Location /adm/blockingstatus>
 PerlAccessHandler      Apache::publiccheck  PerlAccessHandler      Apache::publiccheck
 AuthType LONCAPA  AuthType LONCAPA
Line 1448  Options Indexes FollowSymLinks Line 1485  Options Indexes FollowSymLinks
   
 PerlSetVar lonVersion   '<!-- VERSION -->'  PerlSetVar lonVersion   '<!-- VERSION -->'
 PerlSetVar       lonIDsDir    /home/httpd/lonIDs  PerlSetVar       lonIDsDir    /home/httpd/lonIDs
   PerlSetVar       lonDAVsessDir /home/httpd/webdav/sessionIDs
 PerlSetVar       lonTabDir    /home/httpd/lonTabs  PerlSetVar       lonTabDir    /home/httpd/lonTabs
 PerlSetVar       lonUsersDir  /home/httpd/lonUsers  PerlSetVar       lonUsersDir  /home/httpd/lonUsers
 PerlSetVar       lonIconsURL  /adm/lonIcons  PerlSetVar       lonIconsURL  /adm/lonIcons

Removed from v.1.207  
changed lines
  Added in v.1.211


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