File:  [LON-CAPA] / loncom / loncapa_apache.conf
Revision 1.215: download - view: text, annotated - select for diffs
Wed Apr 18 18:51:08 2012 UTC (12 years ago) by raeburn
Branches: MAIN
CVS tags: version_2_11_X, HEAD
- Bug 6448. Manage dependencies for HTML files uploaded to course.

    1: ##
    2: ## loncapa_apache.conf -- Apache HTTP LON-CAPA configuration file
    3: ##
    4: ## $Id: loncapa_apache.conf,v 1.215 2012/04/18 18:51:08 raeburn Exp $
    5: ##
    6: 
    7: #
    8: # LON-CAPA Section (extensions to httpd.conf daemon configuration)
    9: #
   10: # ================================================================ DocumentRoot
   11: 
   12: DocumentRoot "/home/httpd/html"
   13: 
   14: # ======================================================================== User
   15: 
   16: User www
   17: Group www
   18: 
   19: # ======================================================= Shared Object Modules
   20: 
   21: LoadModule perl_module       modules/libperl.so
   22: <IfDefine !MODPERL2>
   23: AddModule mod_perl.c
   24: </IfDefine>
   25: 
   26: <IfDefine MODPERL2>
   27: PerlSetVar	MODPERL2	1
   28: </IfDefine>
   29: # =============================================================== Miscellaneous
   30: 
   31: ServerAdmin korte@lite.msu.edu
   32: ExtendedStatus On
   33: #
   34: # LON-CAPA Section (extensions to srm.conf name space servicing)
   35: #
   36: # ===================================================================== Aliases
   37: 
   38: Alias /zipspool/ /home/httpd/zipspool/
   39: Alias /prtspool/ /home/httpd/prtspool/
   40: Alias /captchaspool/ /home/httpd/captchaspool/
   41: Alias /webdav/ /home/httpd/html/priv/
   42: ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
   43: <IfModule mod_dav_fs.c>
   44:     DAVLockDB /home/httpd/webdav/DAVLock
   45: </IfModule>
   46: 
   47: # ================================================================= Directories
   48: 
   49: # ------------------------------------------------------------- Access Handlers
   50: 
   51: PerlTransHandler	Apache::lontrans
   52: PerlCleanupHandler	Apache::lonacc::cleanup
   53: 
   54: PerlAuthenHandler Apache::checkauthen
   55: PerlSetVar lonOtherAuthen no
   56: 
   57: <IfModule mod_shib>
   58:     PerlAuthenHandler Apache::lonshibauth
   59:     PerlSetVar lonOtherAuthen yes
   60:     PerlSetVar lonOtherAuthenType Shibboleth
   61: </IfModule>
   62: 
   63: #PerlWarn On
   64: <LocationMatch "^/+res/adm/pages/[^/]+\.(gif|png)$">
   65: PerlAuthenHandler	'sub { return OK }' 
   66: </LocationMatch>
   67: 
   68: # Send proper expires header to avoid unnecessary HTTP request for static content
   69: <LocationMatch "^(/adm/lonIcons|/adm/jQuery|/adm/jsMath|/res/adm/pages|/ckeditor)">
   70:         ExpiresActive On
   71:         ExpiresDefault "access plus 12 hours"
   72:         Header set Cache-Control "public, no-transform"
   73: </LocationMatch>
   74: 
   75: <LocationMatch "^/+res.*">
   76: 
   77: AuthType LONCAPA
   78: Require valid-user
   79: 
   80: PerlAccessHandler      Apache::publiccheck
   81: PerlAuthzHandler       Apache::lonacc
   82: PerlHeaderParserHandler Apache::lonrep
   83: ErrorDocument     403 /adm/login
   84: ErrorDocument     404 /adm/notfound.html
   85: ErrorDocument     406 /adm/roles
   86: ErrorDocument	  500 /adm/errorhandler
   87: </LocationMatch>
   88: 
   89: 
   90: <LocationMatch "/.*">
   91: </LocationMatch>
   92: 
   93: 
   94: <LocationMatch "^/+enc.*">
   95: SetHandler perl-script
   96: PerlHandler       Apache::lonencurl
   97: ErrorDocument     403 /adm/login
   98: ErrorDocument     404 /adm/notfound.html
   99: ErrorDocument     406 /adm/roles
  100: ErrorDocument	  500 /adm/errorhandler
  101: </LocationMatch>
  102: 
  103: <Location /adm/portfolio>
  104: AuthType LONCAPA
  105: Require valid-user
  106: PerlAuthzHandler Apache::lonacc
  107: SetHandler perl-script
  108: PerlHandler Apache::portfolio
  109: </Location>
  110: 
  111: <Location /adm/coursegrp_portfolio>
  112: AuthType LONCAPA
  113: Require valid-user
  114: PerlAuthzHandler Apache::lonacc
  115: SetHandler perl-script
  116: PerlHandler Apache::portfolio
  117: </Location>
  118: 
  119: <Location /adm/pdfupload>
  120: AuthType LONCAPA
  121: Require valid-user
  122: PerlAuthzHandler Apache::lonacc
  123: SetHandler perl-script
  124: PerlHandler             Apache::lonpdfupload
  125: ErrorDocument     403 /adm/login
  126: ErrorDocument     404 /adm/notfound.html
  127: ErrorDocument     406 /adm/roles
  128: ErrorDocument     500 /adm/errorhandler
  129: </Location>
  130: 
  131: <LocationMatch "^/+userfiles.*">
  132: PerlAccessHandler       Apache::lontokacc
  133: PerlCleanupHandler	Apache::lontokacc::removefile
  134: PerlCleanupHandler	Apache::lonacc::cleanup
  135: </LocationMatch>
  136: 
  137: <LocationMatch "^/+uploaded.*">
  138: AuthType LONCAPA
  139: Require valid-user
  140: PerlAuthzHandler	Apache::lonacc
  141: PerlHandler 		Apache::londatecheck
  142: PerlHandler  		Apache::lonipcheck
  143: PerlHeaderParserHandler Apache::lonuploadrep
  144: ErrorDocument     403 /adm/login
  145: ErrorDocument     404 /adm/notfound.html
  146: ErrorDocument     406 /adm/roles
  147: ErrorDocument	  500 /adm/errorhandler
  148: </LocationMatch>
  149: 
  150: <LocationMatch "^/+editupload.*">
  151: AuthType LONCAPA
  152: Require valid-user
  153: PerlAuthzHandler	Apache::lonacc
  154: ErrorDocument     403 /adm/login
  155: ErrorDocument     406 /adm/roles
  156: ErrorDocument	  500 /adm/errorhandler
  157: </LocationMatch>
  158: 
  159: <LocationMatch "^/+uploaded/.*/.*/internal/.*">
  160: PerlAuthenHandler	Apache::lonuploadedacc
  161: PerlAuthzHandler	Apache::lonuploadedacc::skip_phase
  162: PerlAccessHandler	Apache::lonuploadedacc::skip_phase
  163: </LocationMatch>
  164: 
  165: <LocationMatch "^/+uploaded/.*/.*/portfolio/.*">
  166: PerlAccessHandler      Apache::publiccheck
  167: AuthType LONCAPA
  168: Require valid-user
  169: PerlAuthzHandler       Apache::lonacc
  170: </LocationMatch>
  171: 
  172: <LocationMatch "^/+uploaded/.*/.*/groups/.*/portfolio/.*">
  173: PerlAccessHandler      Apache::publiccheck
  174: AuthType LONCAPA
  175: Require valid-user
  176: PerlAuthzHandler       Apache::lonacc
  177: </LocationMatch>
  178: 
  179: <LocationMatch "^/+uploaded/.*\.page$">
  180: SetHandler perl-script
  181: PerlHandler Apache::lonpage
  182: </LocationMatch>
  183: 
  184: <LocationMatch "^/+uploaded/.*\.sequence$">
  185: SetHandler perl-script
  186: PerlHandler Apache::lonsequence
  187: </LocationMatch>
  188: 
  189: <LocationMatch "^/+public/.*/syllabus$">
  190: PerlAccessHandler      Apache::publiccheck
  191: AuthType LONCAPA
  192: Require valid-user
  193: PerlAuthzHandler	Apache::lonacc
  194: SetHandler              perl-script
  195: PerlHandler             Apache::lonsyllabus
  196: ErrorDocument     404 /adm/notfound.html
  197: ErrorDocument	  500 /adm/errorhandler
  198: </LocationMatch>
  199: 
  200: <LocationMatch "^/+(public|adm)/.*(\.rss|_rss\.html)$">
  201: PerlAccessHandler      Apache::publiccheck
  202: AuthType LONCAPA
  203: Require valid-user
  204: PerlAuthzHandler	Apache::lonacc
  205: SetHandler              perl-script
  206: PerlHandler             Apache::lonrss
  207: ErrorDocument     404 /adm/notfound.html
  208: ErrorDocument	  500 /adm/errorhandler
  209: </LocationMatch>
  210: 
  211: <LocationMatch "^/adm/.*/aboutme$">
  212: AuthType LONCAPA
  213: Require valid-user
  214: PerlAuthzHandler	Apache::lonacc
  215: SetHandler              perl-script
  216: PerlHandler             Apache::lonaboutme
  217: ErrorDocument     404 /adm/notfound.html
  218: ErrorDocument     406 /adm/notinit.html
  219: ErrorDocument	  500 /adm/errorhandler
  220: </LocationMatch>
  221: 
  222: <LocationMatch "^/adm/.*/aboutme/portfolio$">
  223: PerlAccessHandler       Apache::publiccheck
  224: AuthType LONCAPA
  225: Require valid-user
  226: PerlAuthzHandler	Apache::lonacc
  227: SetHandler              perl-script
  228: PerlHandler             Apache::lonaboutme
  229: ErrorDocument     404 /adm/notfound.html
  230: ErrorDocument     406 /adm/notinit.html
  231: ErrorDocument	  500 /adm/errorhandler
  232: </LocationMatch>
  233: 
  234: <LocationMatch "^/adm/.*/smppg$">
  235: AuthType LONCAPA
  236: Require valid-user
  237: PerlAuthzHandler	Apache::lonacc
  238: SetHandler              perl-script
  239: PerlHandler             Apache::londatecheck
  240: PerlHandler		Apache::lonipcheck
  241: PerlHandler             Apache::lonsimplepage
  242: ErrorDocument     404 /adm/notfound.html
  243: ErrorDocument     406 /adm/notinit.html
  244: ErrorDocument	  500 /adm/errorhandler
  245: </LocationMatch>
  246: 
  247: <LocationMatch "^/adm/.*/bulletinboard$">
  248: AuthType LONCAPA
  249: Require valid-user
  250: PerlAuthzHandler	Apache::lonacc
  251: SetHandler              perl-script
  252: PerlHandler             Apache::londatecheck
  253: PerlHandler		Apache::lonipcheck
  254: PerlHandler             Apache::lonbulletin
  255: ErrorDocument     404 /adm/notfound.html
  256: ErrorDocument     406 /adm/notinit.html
  257: ErrorDocument	  500 /adm/errorhandler
  258: </LocationMatch>
  259: 
  260: <LocationMatch "\.problem/smpedit$">
  261: AuthType LONCAPA
  262: Require valid-user
  263: PerlAuthzHandler	Apache::lonacc
  264: SetHandler              perl-script
  265: PerlHandler             Apache::lonsimpleproblemedit
  266: ErrorDocument     404 /adm/notfound.html
  267: ErrorDocument     406 /adm/notinit.html
  268: ErrorDocument	  500 /adm/errorhandler
  269: </LocationMatch>
  270: 
  271: <LocationMatch "^/+priv/.*">
  272: AuthType LONCAPA
  273: Require valid-user
  274: PerlAuthzHandler Apache::loncacc
  275: SetHandler        perl-script
  276: ErrorDocument     403 /adm/login
  277: ErrorDocument     404 /adm/notfound.html
  278: ErrorDocument     406 /adm/unauthorized
  279: ErrorDocument	  500 /adm/errorhandler
  280: </LocationMatch>
  281: 
  282: <LocationMatch "^/+webdav/[\w\-]+/[\w\-]+/">
  283:   <IfModule mod_dav.c>
  284:     <IfModule mod_ssl.c>
  285:       AuthType Basic
  286:       AuthName "LONCAPA username,domain"
  287:       Require valid-user
  288:       SSLRequireSSL
  289:       PerlAuthenHandler Apache::lonwebdavauth
  290:       PerlAuthzHandler Apache::lonwebdavacc
  291:       Dav On
  292:       DirectoryIndex index.missing
  293:       Options Indexes FollowSymLinks
  294:       ErrorDocument     403 /adm/nowebdav.html
  295:       ErrorDocument     404 /adm/notfound.html
  296:       ErrorDocument     406 /adm/unauthorized
  297:       ErrorDocument     500 /adm/errorhandler
  298:     </IfModule>
  299:     <IfModule !mod_ssl.c>
  300:       <IfModule mod_rewrite.c>
  301:         RewriteEngine on
  302:         RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]
  303:       </IfModule>
  304:     </IfModule>
  305:   </IfModule>
  306:   <IfModule !mod_dav.c>
  307:     <IfModule mod_rewrite.c>
  308:       RewriteEngine on
  309:       RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]
  310:     </IfModule>
  311:   </IfModule>
  312: </LocationMatch>
  313: 
  314: <LocationMatch "^/+raw.*">
  315: PerlAccessHandler Apache::lonracc
  316: </LocationMatch>
  317: 
  318: <LocationMatch "^/adm/helper/.*\.helper$">
  319: AuthType LONCAPA
  320: Require valid-user
  321: PerlAuthzHandler  Apache::lonacc
  322: SetHandler        perl-script
  323: PerlHandler       Apache::lonhelper
  324: ErrorDocument     403 /adm/login
  325: ErrorDocument     404 /adm/notfound.html
  326: ErrorDocument     406 /adm/unauthorized
  327: ErrorDocument     500 /adm/errorhandler
  328: </LocationMatch>
  329: 
  330: <LocationMatch "/prtspool">
  331: AuthType LONCAPA
  332: Require valid-user
  333: PerlAuthzHandler Apache::lonacc
  334: ErrorDocument     403 /adm/login
  335: ErrorDocument     404 /adm/notfound.html
  336: ErrorDocument     406 /adm/roles
  337: ErrorDocument     413 /adm/overloaded.txt
  338: ErrorDocument	  500 /adm/errorhandler
  339: </LocationMatch>
  340: 
  341: <LocationMatch "/zipspool">
  342: AuthType LONCAPA
  343: Require valid-user
  344: PerlAuthzHandler Apache::lonacc
  345: ErrorDocument     403 /adm/login
  346: ErrorDocument     404 /adm/notfound.html
  347: ErrorDocument     406 /adm/roles
  348: ErrorDocument     413 /adm/overloaded.txt
  349: ErrorDocument	  500 /adm/errorhandler
  350: </LocationMatch>
  351: # ------------------------------------------------------------------------- RAT
  352: 
  353: <LocationMatch "^/+priv/.*\.sequence$">
  354: SetHandler perl-script
  355: PerlHandler Apache::lonratedt
  356: </LocationMatch>
  357: 
  358: <LocationMatch "^/+priv/.*\.page$">
  359: SetHandler perl-script
  360: PerlHandler Apache::lonratedt
  361: </LocationMatch>
  362: 
  363: <LocationMatch "^/+priv/.*\/ratserver$">
  364: SetHandler perl-script
  365: PerlHandler Apache::lonratsrv
  366: </LocationMatch>
  367: 
  368: <LocationMatch "^/+priv/.*\/adveditmenu$">
  369: SetHandler perl-script
  370: PerlHandler Apache::lonratmenu
  371: </LocationMatch>
  372: 
  373: <Location /adm/ratparms>
  374: AuthType LONCAPA
  375: Require valid-user
  376: PerlAuthzHandler       Apache::lonacc
  377: SetHandler perl-script
  378: PerlHandler Apache::lonratparms
  379: ErrorDocument     403 /adm/login
  380: ErrorDocument	  500 /adm/errorhandler
  381: </Location>
  382: 
  383: # --------------------------------------------- Resource Space Content Handlers
  384: 
  385: <LocationMatch "^/+res.*/$">
  386: SetHandler perl-script
  387: PerlHandler Apache::lonindexer
  388: PerlCleanupHandler Apache::lonindexer::cleanup
  389: PerlCleanupHandler	Apache::lonacc::cleanup
  390: </LocationMatch>
  391: 
  392: <LocationMatch "^/+res.*\.tex$">
  393: SetHandler perl-script
  394: PerlHandler Apache::lontex
  395: </LocationMatch>
  396: 
  397: <LocationMatch "^/+res/.*\.page$">
  398: SetHandler perl-script
  399: PerlHandler Apache::lonpage
  400: </LocationMatch>
  401: 
  402: <LocationMatch "^/+res/.*\.sequence$">
  403: SetHandler perl-script
  404: PerlHandler Apache::lonsequence
  405: </LocationMatch>
  406: 
  407: <LocationMatch "^/+(res|priv|public|uploaded|editupload|adm)/.*\.meta$">
  408: PerlAccessHandler      Apache::publiccheck
  409: SetHandler perl-script
  410: PerlHandler Apache::lonmeta
  411: ErrorDocument     413 /adm/overloaded.txt
  412: </LocationMatch>
  413: 
  414: <LocationMatch "^/adm/bombs/">
  415: AuthType LONCAPA
  416: Require valid-user
  417: SetHandler perl-script
  418: PerlAuthzHandler Apache::lonacc
  419: PerlHandler Apache::lonmeta
  420: </LocationMatch>
  421: 
  422: 
  423: 
  424: <LocationMatch "^/+(res|priv)/.*\.rights$">
  425: SetHandler perl-script
  426: PerlHandler Apache::lonrights
  427: </LocationMatch>
  428: 
  429: <LocationMatch "^/+(uploaded|res|priv)/.*\.(xml|html|htm|xhtml|xhtm|sty)$">
  430: SetHandler perl-script
  431: PerlHandler Apache::londatecheck
  432: PerlHandler Apache::lonipcheck
  433: PerlHandler Apache::lonxml
  434: </LocationMatch>
  435: 
  436: <LocationMatch "^/+(res|priv).*\.(task|problem|exam|quiz|assess|survey|form|library)$">
  437: SetHandler perl-script
  438: PerlHandler Apache::lonhomework
  439: </LocationMatch>
  440: 
  441: <LocationMatch "^/+priv/.*\.(js|css|txt|tex)$">
  442: SetHandler perl-script
  443: PerlHandler Apache::lonxml
  444: </LocationMatch>
  445: 
  446: <LocationMatch "^/adm/wrapper/">
  447: AuthType LONCAPA
  448: Require valid-user
  449: PerlAuthzHandler       Apache::lonacc
  450: PerlHandler Apache::londatecheck
  451: PerlHandler Apache::lonipcheck
  452: SetHandler perl-script
  453: PerlHandler Apache::lonwrapper
  454: ErrorDocument     403 /adm/login
  455: ErrorDocument	  500 /adm/errorhandler
  456: </LocationMatch>
  457: 
  458: <LocationMatch "^/adm/source">
  459: AuthType LONCAPA
  460: Require valid-user
  461: PerlAuthzHandler       Apache::lonacc
  462: SetHandler perl-script
  463: PerlHandler Apache::lonsource
  464: ErrorDocument     403 /adm/login
  465: ErrorDocument     406 /adm/roles
  466: ErrorDocument	  500 /adm/errorhandler
  467: </LocationMatch>
  468: 
  469: 
  470: <LocationMatch "^/adm/localize/">
  471: AuthType LONCAPA
  472: Require valid-user
  473: PerlAuthzHandler       Apache::lonacc
  474: SetHandler perl-script
  475: PerlHandler Apache::lonlocalize
  476: ErrorDocument     403 /adm/login
  477: ErrorDocument	  500 /adm/errorhandler
  478: </LocationMatch>
  479: 
  480: # -------------------------------------------------------------- Admin Programs
  481: 
  482: <Location /adm/randomlabel.png>
  483: AuthType LONCAPA
  484: Require valid-user
  485: PerlAuthzHandler       Apache::lonacc
  486: SetHandler perl-script
  487: PerlHandler Apache::randomlylabel
  488: ErrorDocument     403 /adm/login
  489: ErrorDocument	  500 /adm/errorhandler
  490: </Location>
  491: 
  492: <Location /adm/imagechoice>
  493: AuthType LONCAPA
  494: Require valid-user
  495: PerlAuthzHandler       Apache::lonacc
  496: SetHandler perl-script
  497: PerlHandler Apache::imagechoice
  498: ErrorDocument     403 /adm/login
  499: ErrorDocument	  500 /adm/errorhandler
  500: </Location>
  501: 
  502: <Location /adm/searchcourse>
  503: AuthType LONCAPA
  504: Require valid-user
  505: PerlAuthzHandler       Apache::lonacc
  506: SetHandler perl-script
  507: PerlHandler Apache::lonsearchcourse
  508: ErrorDocument     403 /adm/login
  509: ErrorDocument     500 /adm/errorhandler
  510: </Location>
  511: 
  512: <Location /adm/indexcourse>
  513: AuthType LONCAPA
  514: Require valid-user
  515: PerlAuthzHandler       Apache::lonacc
  516: SetHandler perl-script
  517: PerlHandler Apache::lonindexcourse
  518: ErrorDocument     403 /adm/login
  519: ErrorDocument     500 /adm/errorhandler
  520: </Location>
  521: 
  522: <Location /adm/statistics>
  523: AuthType LONCAPA
  524: Require valid-user
  525: PerlAuthzHandler       Apache::lonacc
  526: SetHandler perl-script
  527: PerlHandler Apache::lonstatistics
  528: ErrorDocument     403 /adm/login
  529: ErrorDocument     413 /adm/overloaded.txt
  530: ErrorDocument	  500 /adm/errorhandler
  531: </Location>
  532: 
  533: <Location /adm/trackstudent>
  534: AuthType LONCAPA
  535: Require valid-user
  536: PerlAuthzHandler       Apache::lonacc
  537: SetHandler perl-script
  538: PerlHandler Apache::lontrackstudent
  539: ErrorDocument     403 /adm/login
  540: ErrorDocument     413 /adm/overloaded.txt
  541: ErrorDocument	  500 /adm/errorhandler
  542: </Location>
  543: 
  544: <Location /adm/roles>
  545: AuthType LONCAPA
  546: Require valid-user
  547: PerlAuthzHandler       Apache::lonacc
  548: SetHandler perl-script
  549: PerlHandler Apache::lonroles
  550: ErrorDocument     403 /adm/login
  551: ErrorDocument     409 /adm/preferences?action=lockwarning
  552: ErrorDocument	  500 /adm/errorhandler
  553: </Location>
  554: 
  555: <Location /adm/menu>
  556: AuthType LONCAPA
  557: Require valid-user
  558: PerlAuthzHandler       Apache::lonacc
  559: SetHandler perl-script
  560: PerlHandler Apache::lonmainmenu
  561: ErrorDocument     403 /adm/login
  562: ErrorDocument	  500 /adm/errorhandler
  563: </Location>
  564: 
  565: <Location /adm/pickresource>
  566: AuthType LONCAPA
  567: Require valid-user
  568: PerlAuthzHandler       Apache::lonacc
  569: SetHandler perl-script
  570: PerlHandler Apache::lonpickresource
  571: ErrorDocument     403 /adm/login
  572: ErrorDocument     500 /adm/errorhandler
  573: </Location>
  574: 
  575: <Location /adm/pickauthor>
  576: AuthType LONCAPA
  577: Require valid-user
  578: PerlAuthzHandler       Apache::lonacc
  579: SetHandler perl-script
  580: PerlHandler Apache::lonpickauthor
  581: ErrorDocument     403 /adm/login
  582: ErrorDocument     500 /adm/errorhandler
  583: </Location>
  584: 
  585: <Location /adm/pickstudent>
  586: AuthType LONCAPA
  587: Require valid-user
  588: PerlAuthzHandler       Apache::lonacc
  589: SetHandler perl-script
  590: PerlHandler Apache::lonpickstudent
  591: ErrorDocument     403 /adm/login
  592: ErrorDocument	  500 /adm/errorhandler
  593: </Location>
  594: 
  595: <Location /adm/pickuser>
  596: AuthType LONCAPA
  597: Require valid-user
  598: PerlAuthzHandler       Apache::lonacc
  599: SetHandler perl-script
  600: PerlHandler Apache::lonpickuser
  601: ErrorDocument     403 /adm/login
  602: ErrorDocument     406 /adm/roles
  603: ErrorDocument     500 /adm/errorhandler
  604: </Location>
  605: 
  606: <Location /adm/pickcourse>
  607: AuthType LONCAPA
  608: Require valid-user
  609: PerlAuthzHandler       Apache::lonacc
  610: SetHandler perl-script
  611: PerlHandler Apache::lonpickcourse
  612: ErrorDocument     403 /adm/login
  613: ErrorDocument	  500 /adm/errorhandler
  614: </Location>
  615: 
  616: <Location /adm/pickcode>
  617: AuthType LONCAPA
  618: Require valid-user
  619: PerlAuthzHandler       Apache::lonacc
  620: SetHandler perl-script
  621: PerlHandler Apache::lonpickcode
  622: ErrorDocument     403 /adm/login
  623: ErrorDocument	  500 /adm/errorhandler
  624: </Location>
  625: 
  626: <Location /adm/dependencies>
  627: AuthType LONCAPA
  628: Require valid-user
  629: PerlAuthzHandler       Apache::lonacc
  630: SetHandler perl-script
  631: PerlHandler Apache::londependencies
  632: ErrorDocument     403 /adm/login
  633: ErrorDocument     406 /adm/roles
  634: ErrorDocument     500 /adm/errorhandler
  635: </Location>
  636: 
  637: <Location /adm/login>
  638: SetHandler perl-script
  639: PerlHandler Apache::lonlogin
  640: </Location>
  641: 
  642: <Location /adm/restrictedaccess>
  643: PerlAccessHandler      Apache::publiccheck
  644: AuthType LONCAPA
  645: Require valid-user
  646: SetHandler perl-script
  647: PerlAuthzHandler       Apache::lonacc
  648: PerlHandler Apache::restrictedaccess
  649: ErrorDocument	  500 /adm/errorhandler
  650: </Location>
  651: 
  652: <Location /adm/blockedaccess>
  653: PerlAccessHandler      Apache::publiccheck
  654: AuthType LONCAPA
  655: Require valid-user
  656: SetHandler perl-script
  657: PerlAuthzHandler       Apache::lonacc
  658: PerlHandler Apache::blockedaccess
  659: ErrorDocument     500 /adm/errorhandler
  660: </Location>
  661: 
  662: <Location /adm/logout>
  663: AuthType LONCAPA
  664: Require valid-user
  665: PerlAuthzHandler       Apache::lonacc
  666: SetHandler perl-script
  667: PerlHandler Apache::lonlogout
  668: ErrorDocument     403 /adm/login
  669: ErrorDocument     409 /adm/preferences?action=lockwarning
  670: ErrorDocument	  500 /adm/errorhandler
  671: </Location>
  672: 
  673: <Location /adm/switchserver>
  674: AuthType LONCAPA
  675: Require valid-user
  676: PerlAuthzHandler       Apache::lonacc
  677: SetHandler perl-script
  678: PerlHandler Apache::switchserver
  679: ErrorDocument     403 /adm/login
  680: ErrorDocument	  500 /adm/errorhandler
  681: </Location>
  682: 
  683: <Location /adm/authenticate>
  684: SetHandler perl-script
  685: PerlHandler Apache::lonauth
  686: </Location>
  687: 
  688: <Location /adm/migrateuser>
  689: SetHandler perl-script
  690: PerlHandler Apache::migrateuser
  691: </Location>
  692: 
  693: <Location /adm/sso>
  694:   <IfModule mod_shib>
  695:     AuthType shibboleth
  696:     ShibUseEnvironment On
  697:     ShibRequestSetting requireSession 1
  698:     ShibRequestSetting redirectToSSL 443
  699:     require valid-user
  700:     PerlAuthzHandler       Apache::lonshibacc
  701:     PerlAuthzHandler       Apache::lonacc
  702:   </IfModule>
  703:   <IfModule !mod_shib>
  704:     PerlTypeHandler        Apache::lonnoshib
  705:   </IfModule>
  706: </Location>
  707: 
  708: <Location /adm/annotations>
  709: AuthType LONCAPA
  710: Require valid-user
  711: PerlAuthzHandler       Apache::lonacc
  712: SetHandler perl-script
  713: PerlHandler Apache::admannotations
  714: ErrorDocument     403 /adm/login
  715: ErrorDocument	  500 /adm/errorhandler
  716: </Location>
  717: 
  718: <Location /adm/spellcheck>
  719: AuthType LONCAPA
  720: Require valid-user
  721: PerlAuthzHandler       Apache::lonacc
  722: SetHandler perl-script
  723: PerlHandler Apache::lonspeller
  724: ErrorDocument     403 /adm/login
  725: ErrorDocument	  500 /adm/errorhandler
  726: </Location>
  727: 
  728: <Location /adm/flip>
  729: AuthType LONCAPA
  730: Require valid-user
  731: PerlAuthzHandler       Apache::lonacc
  732: SetHandler perl-script
  733: PerlHandler Apache::lonpageflip
  734: PerlCleanupHandler Apache::lonpageflip::cleanup
  735: PerlCleanupHandler	Apache::lonacc::cleanup
  736: ErrorDocument     406 /adm/roles
  737: ErrorDocument     403 /adm/login
  738: ErrorDocument	  500 /adm/errorhandler
  739: </Location>
  740: 
  741: <Location /adm/ambiguous>
  742: AuthType LONCAPA
  743: Require valid-user
  744: PerlAuthzHandler       Apache::lonacc
  745: SetHandler perl-script
  746: PerlHandler Apache::lonambiguous
  747: PerlCleanupHandler Apache::lonambiguous::cleanup
  748: PerlCleanupHandler	Apache::lonacc::cleanup
  749: ErrorDocument     403 /adm/login
  750: ErrorDocument	  500 /adm/errorhandler
  751: </Location>
  752: 
  753: <Location /adm/email>
  754: AuthType LONCAPA
  755: Require valid-user
  756: PerlAuthzHandler       Apache::lonacc
  757: SetHandler perl-script
  758: PerlHandler Apache::lonmsgdisplay
  759: ErrorDocument     403 /adm/login
  760: ErrorDocument	  500 /adm/errorhandler
  761: </Location>
  762: 
  763: <Location /adm/notify>
  764: AuthType LONCAPA
  765: Require valid-user
  766: PerlAuthzHandler       Apache::lonacc
  767: SetHandler perl-script
  768: PerlHandler Apache::lonnotify
  769: ErrorDocument     403 /adm/login
  770: ErrorDocument     500 /adm/errorhandler
  771: </Location>
  772: 
  773: <Location /adm/parmset>
  774: AuthType LONCAPA
  775: Require valid-user
  776: PerlAuthzHandler       Apache::lonacc
  777: SetHandler perl-script
  778: PerlHandler Apache::lonparmset
  779: ErrorDocument     403 /adm/login
  780: ErrorDocument     406 /adm/roles
  781: ErrorDocument	  500 /adm/errorhandler
  782: </Location>
  783: 
  784: <Location /adm/courseprefs>
  785: AuthType LONCAPA
  786: Require valid-user
  787: PerlAuthzHandler       Apache::lonacc
  788: SetHandler perl-script
  789: PerlHandler Apache::courseprefs
  790: ErrorDocument     403 /adm/login
  791: ErrorDocument     406 /adm/roles
  792: ErrorDocument     500 /adm/errorhandler
  793: </Location>
  794: 
  795: <Location /adm/slotrequest>
  796: AuthType LONCAPA
  797: Require valid-user
  798: PerlAuthzHandler       Apache::lonacc
  799: SetHandler perl-script
  800: PerlHandler Apache::slotrequest
  801: ErrorDocument     403 /adm/login
  802: ErrorDocument     406 /adm/roles
  803: ErrorDocument	  500 /adm/errorhandler
  804: </Location>
  805: 
  806: <Location /adm/wizard>
  807: AuthType LONCAPA
  808: Require valid-user
  809: PerlAuthzHandler       Apache::lonacc
  810: SetHandler perl-script
  811: PerlHandler Apache::lonwizard
  812: ErrorDocument     403 /adm/login
  813: ErrorDocument     406 /adm/roles
  814: ErrorDocument	  500 /adm/errorhandler
  815: </Location>
  816: 
  817: <Location /adm/grades>
  818: AuthType LONCAPA
  819: Require valid-user
  820: PerlAuthzHandler       Apache::lonacc
  821: SetHandler perl-script
  822: PerlHandler Apache::grades
  823: ErrorDocument     403 /adm/login
  824: ErrorDocument     406 /adm/roles
  825: ErrorDocument	  500 /adm/errorhandler
  826: </Location>
  827: 
  828: <Location /adm/requestcourse>
  829: AuthType LONCAPA
  830: Require valid-user
  831: PerlAuthzHandler       Apache::lonacc
  832: SetHandler perl-script
  833: PerlHandler Apache::lonrequestcourse
  834: ErrorDocument     403 /adm/login
  835: ErrorDocument     406 /adm/roles
  836: ErrorDocument     500 /adm/errorhandler
  837: </Location>
  838: 
  839: <Location /adm/createcourse>
  840: AuthType LONCAPA
  841: Require valid-user
  842: PerlAuthzHandler       Apache::lonacc
  843: SetHandler perl-script
  844: PerlHandler Apache::loncreatecourse
  845: ErrorDocument     403 /adm/login
  846: ErrorDocument     406 /adm/roles
  847: ErrorDocument	  500 /adm/errorhandler
  848: </Location>
  849: 
  850: <Location /adm/modifycourse>
  851: AuthType LONCAPA
  852: Require valid-user
  853: PerlAuthzHandler       Apache::lonacc
  854: SetHandler perl-script
  855: PerlHandler Apache::lonmodifycourse
  856: ErrorDocument     403 /adm/login
  857: ErrorDocument     406 /adm/roles
  858: ErrorDocument     500 /adm/errorhandler
  859: </Location>
  860: 
  861: <Location /adm/domainprefs>
  862: AuthType LONCAPA
  863: Require valid-user
  864: PerlAuthzHandler       Apache::lonacc
  865: SetHandler perl-script
  866: PerlHandler Apache::domainprefs
  867: ErrorDocument     403 /adm/login
  868: ErrorDocument     406 /adm/roles
  869: ErrorDocument     500 /adm/errorhandler
  870: </Location>
  871: 
  872: <Location /adm/domainstatus>
  873: PerlAccessHandler       Apache::lonstatusacc
  874: SetHandler perl-script
  875: PerlHandler Apache::domainstatus
  876: ErrorDocument     403 /adm/login
  877: ErrorDocument     406 /adm/roles
  878: ErrorDocument     500 /adm/errorhandler
  879: </Location>
  880: 
  881: <Location /adm/createuser>
  882: AuthType LONCAPA
  883: Require valid-user
  884: PerlAuthzHandler       Apache::lonacc
  885: SetHandler perl-script
  886: PerlHandler Apache::loncreateuser
  887: ErrorDocument     403 /adm/login
  888: ErrorDocument     406 /adm/roles
  889: ErrorDocument	  500 /adm/errorhandler
  890: </Location>
  891: 
  892: <Location /adm/publish>
  893: AuthType LONCAPA
  894: Require valid-user
  895: PerlAuthzHandler       Apache::lonacc
  896: SetHandler perl-script
  897: PerlHandler Apache::lonpublisher
  898: ErrorDocument     403 /adm/login
  899: ErrorDocument     404 /adm/notfound.html
  900: ErrorDocument     406 /adm/unauthorized
  901: ErrorDocument	  500 /adm/errorhandler
  902: </Location>
  903: 
  904: <LocationMatch "^/+priv/.*/$">
  905: AuthType LONCAPA
  906: Require valid-user
  907: PerlAuthzHandler       Apache::loncacc
  908: SetHandler perl-script
  909: PerlHandler Apache::lonpubdir
  910: ErrorDocument     403 /adm/login
  911: ErrorDocument     404 /adm/notfound.html
  912: ErrorDocument     406 /adm/unauthorized
  913: ErrorDocument	  500 /adm/errorhandler
  914: </LocationMatch>
  915: 
  916: <Location /adm/unauthorized>
  917: AuthType LONCAPA
  918: Require valid-user
  919: PerlAuthzHandler       Apache::lonacc
  920: SetHandler perl-script
  921: PerlHandler Apache::lonunauthorized
  922: ErrorDocument     403 /adm/login
  923: ErrorDocument     404 /adm/notfound.html
  924: ErrorDocument	  500 /adm/errorhandler
  925: </Location>
  926: 
  927: <Location /adm/retrieve>
  928: AuthType LONCAPA
  929: Require valid-user
  930: PerlAuthzHandler       Apache::lonacc
  931: SetHandler perl-script
  932: PerlHandler Apache::lonretrieve
  933: ErrorDocument     403 /adm/login
  934: ErrorDocument     404 /adm/notfound.html
  935: ErrorDocument     406 /adm/unauthorized
  936: ErrorDocument	  500 /adm/errorhandler
  937: </Location>
  938: 
  939: <Location /adm/cleanup>
  940: AuthType LONCAPA
  941: Require valid-user
  942: PerlAuthzHandler       Apache::lonacc
  943: SetHandler perl-script
  944: PerlHandler Apache::loncleanup
  945: ErrorDocument     403 /adm/login
  946: ErrorDocument     404 /adm/notfound.html
  947: ErrorDocument     406 /adm/unauthorized
  948: ErrorDocument	  500 /adm/errorhandler
  949: </Location>
  950: 
  951: <Location /adm/cfile>
  952: AuthType LONCAPA
  953: Require valid-user
  954: PerlAuthzHandler       Apache::lonacc
  955: SetHandler perl-script
  956: PerlHandler Apache::loncfile
  957: ErrorDocument     403 /adm/login
  958: ErrorDocument     404 /adm/notfound.html
  959: ErrorDocument     406 /adm/unauthorized
  960: ErrorDocument	  500 /adm/errorhandler
  961: </Location>
  962: 
  963: <Location /adm/diff>
  964: AuthType LONCAPA
  965: Require valid-user
  966: PerlAuthzHandler       Apache::lonacc
  967: SetHandler perl-script
  968: PerlHandler Apache::londiff
  969: ErrorDocument     403 /adm/login
  970: ErrorDocument     404 /adm/notfound.html
  971: ErrorDocument     406 /adm/unauthorized
  972: ErrorDocument	  500 /adm/errorhandler
  973: </Location>
  974: 
  975: <Location /adm/upload>
  976: AuthType LONCAPA
  977: Require valid-user
  978: PerlAuthzHandler       Apache::lonacc
  979: SetHandler perl-script
  980: PerlHandler Apache::lonupload
  981: ErrorDocument     403 /adm/login
  982: ErrorDocument     404 /adm/notfound.html
  983: ErrorDocument     406 /adm/unauthorized
  984: ErrorDocument	  500 /adm/errorhandler
  985: </Location>
  986: 
  987: <Location /adm/imsimport>
  988: AuthType LONCAPA
  989: Require valid-user
  990: PerlAuthzHandler       Apache::lonacc
  991: SetHandler perl-script
  992: PerlHandler Apache::imsimport
  993: ErrorDocument     403 /adm/login
  994: ErrorDocument     404 /adm/notfound.html
  995: ErrorDocument     406 /adm/unauthorized
  996: ErrorDocument     500 /adm/errorhandler
  997: </Location>
  998: 
  999: <Location /adm/testbank>
 1000: AuthType LONCAPA
 1001: Require valid-user
 1002: PerlAuthzHandler       Apache::lonacc
 1003: SetHandler perl-script
 1004: PerlHandler Apache::testbankimport
 1005: ErrorDocument     403 /adm/login
 1006: ErrorDocument     404 /adm/notfound.html
 1007: ErrorDocument     406 /adm/unauthorized
 1008: ErrorDocument     500 /adm/errorhandler
 1009: </Location>
 1010: 
 1011: <Location /adm/assesscalc>
 1012: AuthType LONCAPA
 1013: Require valid-user
 1014: PerlAuthzHandler       Apache::lonacc
 1015: SetHandler perl-script
 1016: PerlHandler Apache::lonspreadsheet
 1017: ErrorDocument     403 /adm/login
 1018: ErrorDocument     406 /adm/roles
 1019: ErrorDocument     413 /adm/overloaded.txt
 1020: ErrorDocument	  500 /adm/errorhandler
 1021: </Location>
 1022: 
 1023: <Location /adm/studentcalc>
 1024: AuthType LONCAPA
 1025: Require valid-user
 1026: PerlAuthzHandler       Apache::lonacc
 1027: SetHandler perl-script
 1028: PerlHandler Apache::lonspreadsheet
 1029: ErrorDocument     403 /adm/login
 1030: ErrorDocument     406 /adm/roles
 1031: ErrorDocument     413 /adm/overloaded.txt
 1032: ErrorDocument	  500 /adm/errorhandler
 1033: </Location>
 1034: 
 1035: <Location /adm/classcalc>
 1036: AuthType LONCAPA
 1037: Require valid-user
 1038: PerlAuthzHandler       Apache::lonacc
 1039: SetHandler perl-script
 1040: PerlHandler Apache::lonspreadsheet
 1041: ErrorDocument     403 /adm/login
 1042: ErrorDocument     406 /adm/roles
 1043: ErrorDocument     413 /adm/overloaded.txt
 1044: ErrorDocument	  500 /adm/errorhandler
 1045: </Location>
 1046: 
 1047: <Location /adm/dropadd>
 1048: AuthType LONCAPA
 1049: Require valid-user
 1050: PerlAuthzHandler       Apache::lonacc
 1051: SetHandler perl-script
 1052: PerlHandler Apache::londropadd
 1053: ErrorDocument     403 /adm/login
 1054: ErrorDocument     406 /adm/roles
 1055: ErrorDocument	  500 /adm/errorhandler
 1056: </Location>
 1057: 
 1058: <Location /adm/viewclasslist>
 1059: AuthType LONCAPA
 1060: Require valid-user
 1061: PerlAuthzHandler       Apache::lonacc
 1062: SetHandler perl-script
 1063: PerlHandler Apache::lonviewclasslist
 1064: ErrorDocument     403 /adm/login
 1065: ErrorDocument     406 /adm/roles
 1066: ErrorDocument	  500 /adm/errorhandler
 1067: </Location>
 1068: 
 1069: <Location /adm/coursegroups>
 1070: AuthType LONCAPA
 1071: Require valid-user
 1072: PerlAuthzHandler       Apache::lonacc
 1073: SetHandler perl-script
 1074: PerlHandler Apache::loncoursegroups
 1075: ErrorDocument     403 /adm/login
 1076: ErrorDocument     406 /adm/roles
 1077: ErrorDocument     500 /adm/errorhandler
 1078: </Location>
 1079: 
 1080: <Location /adm/groupboards>
 1081: AuthType LONCAPA
 1082: Require valid-user
 1083: PerlAuthzHandler       Apache::lonacc
 1084: SetHandler perl-script
 1085: PerlHandler Apache::groupboards
 1086: ErrorDocument     403 /adm/login
 1087: ErrorDocument     406 /adm/roles
 1088: ErrorDocument     500 /adm/errorhandler
 1089: </Location>
 1090: 
 1091: <Location /adm/grouproster>
 1092: AuthType LONCAPA
 1093: Require valid-user
 1094: PerlAuthzHandler       Apache::lonacc
 1095: SetHandler perl-script
 1096: PerlHandler Apache::grouproster
 1097: ErrorDocument     403 /adm/login
 1098: ErrorDocument     406 /adm/roles
 1099: ErrorDocument     500 /adm/errorhandler
 1100: </Location>
 1101: 
 1102: <Location /adm/whatsnew>
 1103: AuthType LONCAPA
 1104: Require valid-user
 1105: PerlAuthzHandler       Apache::lonacc
 1106: SetHandler perl-script
 1107: PerlHandler Apache::lonwhatsnew
 1108: ErrorDocument     403 /adm/login
 1109: ErrorDocument     406 /adm/roles
 1110: ErrorDocument     500 /adm/errorhandler
 1111: </Location>
 1112: 
 1113: <Location /adm/populate>
 1114: AuthType LONCAPA
 1115: Require valid-user
 1116: PerlAuthzHandler       Apache::lonacc
 1117: SetHandler perl-script
 1118: PerlHandler Apache::lonpopulate
 1119: ErrorDocument     403 /adm/login
 1120: ErrorDocument     406 /adm/roles
 1121: ErrorDocument     500 /adm/errorhandler
 1122: </Location>
 1123: 
 1124: <Location /adm/managekeys>
 1125: AuthType LONCAPA
 1126: Require valid-user
 1127: PerlAuthzHandler       Apache::lonacc
 1128: SetHandler perl-script
 1129: PerlHandler Apache::lonmanagekeys
 1130: ErrorDocument     403 /adm/login
 1131: ErrorDocument     406 /adm/roles
 1132: ErrorDocument	  500 /adm/errorhandler
 1133: </Location>
 1134: 
 1135: <Location /adm/printout>
 1136: AuthType LONCAPA
 1137: Require valid-user
 1138: PerlAuthzHandler       Apache::lonacc
 1139: SetHandler perl-script
 1140: PerlHandler Apache::lonprintout
 1141: ErrorDocument     403 /adm/login
 1142: ErrorDocument     413 /adm/overloaded.txt
 1143: ErrorDocument	  500 /adm/errorhandler
 1144: </Location>
 1145: 
 1146: <Location /adm/feedback>
 1147: AuthType LONCAPA
 1148: Require valid-user
 1149: PerlAuthzHandler       Apache::lonacc
 1150: SetHandler perl-script
 1151: PerlHandler Apache::lonfeedback
 1152: ErrorDocument     403 /adm/login
 1153: ErrorDocument	  500 /adm/errorhandler
 1154: </Location>
 1155: 
 1156: <Location /adm/coursedocs>
 1157: AuthType LONCAPA
 1158: Require valid-user
 1159: PerlAuthzHandler       Apache::lonacc
 1160: SetHandler perl-script
 1161: PerlHandler Apache::londocs
 1162: PerlCleanupHandler Apache::londocs::untiehash
 1163: PerlCleanupHandler	Apache::lonacc::cleanup
 1164: ErrorDocument     403 /adm/login
 1165: ErrorDocument	  500 /adm/errorhandler
 1166: </Location>
 1167: 
 1168: <Location /adm/supplemental>
 1169: AuthType LONCAPA
 1170: Require valid-user
 1171: PerlAuthzHandler       Apache::lonacc
 1172: SetHandler perl-script
 1173: PerlHandler Apache::londocs
 1174: PerlCleanupHandler Apache::londocs::untiehash
 1175: PerlCleanupHandler      Apache::lonacc::cleanup
 1176: ErrorDocument     403 /adm/login
 1177: ErrorDocument     500 /adm/errorhandler
 1178: </Location>
 1179: 
 1180: <Location /adm/imsimportdocs>
 1181: AuthType LONCAPA
 1182: Require valid-user
 1183: PerlAuthzHandler       Apache::lonacc
 1184: SetHandler perl-script
 1185: PerlHandler Apache::imsimportdocs
 1186: ErrorDocument     403 /adm/login
 1187: ErrorDocument     500 /adm/errorhandler
 1188: </Location>
 1189: 
 1190: <LocationMatch "^/adm/announcements">
 1191: AuthType LONCAPA
 1192: Require valid-user
 1193: PerlAuthzHandler       Apache::lonacc
 1194: SetHandler perl-script
 1195: PerlHandler Apache::lonannounce
 1196: ErrorDocument     403 /adm/login
 1197: ErrorDocument	  500 /adm/errorhandler
 1198: </LocationMatch>
 1199: 
 1200: <Location /adm/chat>
 1201: AuthType LONCAPA
 1202: Require valid-user
 1203: PerlAuthzHandler       Apache::lonacc
 1204: SetHandler perl-script
 1205: PerlHandler Apache::lonchat
 1206: ErrorDocument	  500 /adm/errorhandler
 1207: </Location>
 1208: 
 1209: <Location /adm/chatfetch>
 1210: AuthType LONCAPA
 1211: Require valid-user
 1212: PerlAuthzHandler       Apache::lonacc
 1213: SetHandler perl-script
 1214: PerlHandler Apache::lonchatfetch
 1215: ErrorDocument     413 /adm/overloaded.txt
 1216: ErrorDocument	  500 /adm/errorhandler
 1217: </Location>
 1218: 
 1219: <Location /adm/groupchat>
 1220: AuthType LONCAPA
 1221: Require valid-user
 1222: PerlAuthzHandler       Apache::lonacc
 1223: SetHandler perl-script
 1224: PerlHandler Apache::longroupchat
 1225: ErrorDocument     403 /adm/login
 1226: ErrorDocument     500 /adm/errorhandler
 1227: </Location>
 1228: 
 1229: <Location /adm/evaluate>
 1230: AuthType LONCAPA
 1231: Require valid-user
 1232: PerlAuthzHandler       Apache::lonacc
 1233: SetHandler perl-script
 1234: PerlHandler Apache::lonevaluate
 1235: ErrorDocument     403 /adm/login
 1236: ErrorDocument	  500 /adm/errorhandler
 1237: </Location>
 1238: 
 1239: <Location /adm/preferences>
 1240: AuthType LONCAPA
 1241: Require valid-user
 1242: PerlAuthzHandler       Apache::lonacc
 1243: SetHandler perl-script
 1244: PerlHandler Apache::lonpreferences
 1245: ErrorDocument     403 /adm/login
 1246: ErrorDocument	  500 /adm/errorhandler
 1247: </Location>
 1248: 
 1249: <Location /adm/communicate>
 1250: AuthType LONCAPA
 1251: Require valid-user
 1252: PerlAuthzHandler       Apache::lonacc
 1253: SetHandler perl-script
 1254: PerlHandler Apache::loncommunicate
 1255: ErrorDocument     403 /adm/login
 1256: ErrorDocument	  500 /adm/errorhandler
 1257: </Location>
 1258: 
 1259: <Location /adm/searchcat>
 1260: AuthType LONCAPA
 1261: Require valid-user
 1262: PerlAuthzHandler       Apache::lonacc
 1263: SetHandler perl-script
 1264: PerlHandler Apache::lonsearchcat
 1265: PerlCleanupHandler Apache::lonsearchcat::cleanup
 1266: PerlCleanupHandler	Apache::lonacc::cleanup
 1267: ErrorDocument     403 /adm/login
 1268: ErrorDocument     413 /adm/overloaded.txt
 1269: ErrorDocument	  500 /adm/errorhandler
 1270: </Location>
 1271: 
 1272: <Location /adm/navmaps>
 1273: AuthType LONCAPA
 1274: Require valid-user
 1275: PerlAuthzHandler       Apache::lonacc
 1276: SetHandler perl-script
 1277: PerlHandler Apache::lonnavdisplay
 1278: ErrorDocument     403 /adm/login
 1279: ErrorDocument     406 /adm/roles
 1280: ErrorDocument	  500 /adm/errorhandler
 1281: </Location>
 1282: 
 1283: <Location /adm/quickgrades>
 1284: AuthType LONCAPA
 1285: Require valid-user
 1286: PerlAuthzHandler       Apache::lonacc
 1287: SetHandler perl-script
 1288: PerlHandler Apache::lonquickgrades
 1289: ErrorDocument     403 /adm/login
 1290: ErrorDocument     406 /adm/roles
 1291: ErrorDocument     500 /adm/errorhandler
 1292: </Location>
 1293: 
 1294: <Location /adm/groupsort>
 1295: AuthType LONCAPA
 1296: Require valid-user
 1297: PerlAuthzHandler	Apache::lonacc
 1298: SetHandler perl-script
 1299: PerlHandler Apache::groupsort
 1300: PerlCleanupHandler Apache::groupsort::cleanup
 1301: PerlCleanupHandler	Apache::lonacc::cleanup
 1302: ErrorDocument     403 /adm/login
 1303: ErrorDocument	  500 /adm/errorhandler
 1304: </Location>
 1305: 
 1306: <Location /adm/wishlist>
 1307: AuthType LONCAPA
 1308: Require valid-user
 1309: PerlAuthzHandler       Apache::lonacc
 1310: SetHandler perl-script
 1311: PerlHandler Apache::lonwishlistdisplay
 1312: ErrorDocument     403 /adm/login
 1313: ErrorDocument     406 /adm/roles
 1314: ErrorDocument	  500 /adm/errorhandler
 1315: </Location>
 1316: 
 1317: <Location /adm/setblock>
 1318: AuthType LONCAPA
 1319: Require valid-user
 1320: PerlAuthzHandler       Apache::lonacc
 1321: SetHandler             perl-script
 1322: PerlHandler            Apache::lonblockingmenu
 1323: ErrorDocument     403 /adm/login
 1324: ErrorDocument     406 /adm/roles
 1325: ErrorDocument     500 /adm/errorhandler
 1326: </Location>
 1327: 
 1328: <Location /adm/blockingstatus>
 1329: PerlAccessHandler      Apache::publiccheck
 1330: AuthType LONCAPA
 1331: Require valid-user
 1332: PerlAuthzHandler       Apache::lonacc
 1333: SetHandler             perl-script
 1334: PerlHandler            Apache::lonblockingstatus
 1335: </Location>
 1336: 
 1337: <Location /adm/errorhandler>
 1338: SetHandler perl-script
 1339: PerlHandler Apache::lonerrorhandler
 1340: </Location>
 1341: 
 1342: <LocationMatch "^/adm/help/.*\.hlp$">
 1343: AuthType LONCAPA
 1344: Require valid-user
 1345: PerlAccessHandler      Apache::publiccheck
 1346: PerlAuthzHandler	Apache::lonacc
 1347: SetHandler perl-script
 1348: PerlHandler Apache::lonhelp
 1349: ErrorDocument	  500 /adm/errorhandler
 1350: </LocationMatch>
 1351: 
 1352: <LocationMatch "^/adm/helpmenu">
 1353: AuthType LONCAPA
 1354: Require valid-user
 1355: PerlAuthzHandler       Apache::lonacc
 1356: SetHandler perl-script
 1357: PerlHandler Apache::lonhelpmenu
 1358: ErrorDocument	  500 /adm/errorhandler
 1359: </LocationMatch>
 1360: 
 1361: <LocationMatch "^/adm/support">
 1362: AuthType LONCAPA
 1363: Require valid-user
 1364: PerlAuthzHandler       Apache::lonacc
 1365: SetHandler perl-script
 1366: PerlHandler Apache::lonsupportreq
 1367: ErrorDocument	  500 /adm/errorhandler
 1368: </LocationMatch>
 1369: 
 1370: <LocationMatch "^/adm/helpdesk">
 1371: SetHandler perl-script
 1372: PerlHandler Apache::lonsupportreq
 1373: ErrorDocument	  500 /adm/errorhandler
 1374: </LocationMatch>
 1375: 
 1376: <LocationMatch "^/adm/css">
 1377: SetHandler perl-script
 1378: PerlHandler Apache::loncss
 1379: ErrorDocument	  500 /adm/errorhandler
 1380: </LocationMatch>
 1381: 
 1382: <LocationMatch "^/adm/coursecatalog">
 1383: SetHandler perl-script
 1384: PerlHandler Apache::coursecatalog
 1385: ErrorDocument	  500 /adm/errorhandler
 1386: </LocationMatch>
 1387: 
 1388: <LocationMatch "^/adm/resetpw">
 1389: SetHandler perl-script
 1390: PerlHandler Apache::resetpw
 1391: ErrorDocument     500 /adm/errorhandler
 1392: </LocationMatch>
 1393: 
 1394: <LocationMatch "^/adm/selfenroll">
 1395: SetHandler perl-script
 1396: PerlHandler Apache::selfenroll
 1397: ErrorDocument     500 /adm/errorhandler
 1398: </LocationMatch>
 1399: 
 1400: <LocationMatch "^/adm/createaccount">
 1401: SetHandler perl-script
 1402: PerlHandler Apache::createaccount
 1403: ErrorDocument     500 /adm/errorhandler
 1404: </LocationMatch>
 1405: 
 1406: <LocationMatch "^/adm/dns">
 1407: SetHandler perl-script
 1408: PerlHandler Apache::londns
 1409: ErrorDocument     500 /adm/errorhandler
 1410: </LocationMatch>
 1411: 
 1412: # ------------------------------------------------- Backdoor Adm Tests/Programs
 1413: 
 1414: <Location /adm/test>
 1415: PerlAccessHandler Apache::lonstatusacc
 1416: SetHandler perl-script
 1417: PerlHandler Apache::lontest
 1418: </Location>
 1419: 
 1420: # ------------------------------------------------------- Shutting down a child
 1421: 
 1422: PerlChildExitHandler Apache::lonacc::goodbye
 1423: 
 1424: #
 1425: # LON-CAPA Section (extensions to access.conf permission configuration)
 1426: #
 1427: # =========================================================== Directory Options
 1428: 
 1429: # Start out with "no"
 1430: 
 1431: <Directory />
 1432: Options None
 1433: AllowOverride None
 1434: order deny,allow
 1435: deny from all
 1436: </Directory>
 1437: 
 1438: # Allow uploaded files to be served
 1439: 
 1440: <Directory "/home/httpd/lonUsers">
 1441: Options Includes FollowSymLinks
 1442: AllowOverride None
 1443: order allow,deny
 1444: allow from all
 1445: </Directory>
 1446:  
 1447: # Allow construction space files to be served
 1448: 
 1449: <Directory "/home/*/public_html/" >
 1450: Options Includes FollowSymLinks
 1451: AllowOverride
 1452: order allow,deny
 1453: allow from all
 1454: </Directory>
 1455: 
 1456: # Yes to symbolic links and server-side includes
 1457: 
 1458: <Directory /home/httpd/html>
 1459: Options Includes FollowSymLinks
 1460: AllowOverride None
 1461: order allow,deny
 1462: allow from all
 1463: </Directory>
 1464: 
 1465: # If it is in cgi-bin, then it can be executed as a CGI script.
 1466: 
 1467: <Directory /home/httpd/cgi-bin>
 1468: AllowOverride None
 1469: Options ExecCGI FollowSymLinks
 1470: order allow,deny
 1471: allow from all
 1472: </Directory>
 1473: 
 1474: # Allow serving of files in prtspool
 1475: 
 1476: <Directory "/home/httpd/prtspool/">
 1477: Options Includes FollowSymLinks
 1478: AllowOverride None
 1479: order allow,deny
 1480: allow from all
 1481: </Directory>
 1482: 
 1483: # Allow serving of files in zipspool
 1484: 
 1485: <Directory "/home/httpd/zipspool/">
 1486: Options Includes FollowSymLinks
 1487: AllowOverride None
 1488: order allow,deny
 1489: allow from all
 1490: </Directory>
 1491: 
 1492: # Allow serving of files in captchaspool
 1493: 
 1494: <Directory "/home/httpd/captchaspool/">
 1495: Options Includes FollowSymLinks
 1496: AllowOverride None
 1497: order allow,deny
 1498: allow from all
 1499: </Directory>
 1500: 
 1501: # ============================================================= Access Handlers
 1502: 
 1503: # ------------------------------------------------- Allow server-status reports
 1504: <Location /server-status>
 1505: PerlAccessHandler Apache::lonstatusacc
 1506: SetHandler server-status
 1507: </Location>
 1508: 
 1509: # ------------------------ Allow LON-CAPA "low-level" connection status reports
 1510: <LocationMatch "^/+lon-status/.*">
 1511: PerlAccessHandler Apache::lonstatusacc
 1512: ErrorDocument     406 /adm/roles
 1513: ErrorDocument     500 /adm/errorhandler
 1514: </LocationMatch>
 1515: 
 1516: # ------------------- Allow access to local system documentation from localhost
 1517: Alias /doc /usr/doc
 1518: <Directory /usr/doc>
 1519: order deny,allow
 1520: deny from all
 1521: allow from localhost
 1522: Options Indexes FollowSymLinks
 1523: </Directory>
 1524: 
 1525: # ******** THESE "SHOULD" NEVER BE ALTERED BY THE USER ************************
 1526: # ====================================== Internal Settings / Perl Configuration
 1527: 
 1528: PerlSetVar	 lonVersion   '<!-- VERSION -->'
 1529: PerlSetVar       lonIDsDir    /home/httpd/lonIDs
 1530: PerlSetVar       lonDAVsessDir /home/httpd/webdav/sessionIDs
 1531: PerlSetVar       lonTabDir    /home/httpd/lonTabs
 1532: PerlSetVar       lonUsersDir  /home/httpd/lonUsers
 1533: PerlSetVar       lonIconsURL  /adm/lonIcons
 1534: PerlSetVar       londPort     5663
 1535: PerlSetVar       lonSysEMail  korte@lite.msu.edu
 1536: PerlSetVar       lonDaemons   /home/httpd/perl
 1537: PerlSetVar       lonLib       /home/httpd/lib
 1538: PerlSetVar       lonSockDir   /home/httpd/sockets
 1539: PerlSetVar       lonSockCreate   /home/httpd/sockets/common
 1540: PerlSetVar       lonDocRoot   /home/httpd/html
 1541: PerlSetVar       lonPrtDir    /home/httpd/prtspool
 1542: PerlSetVar       lonIncludes  /home/httpd/html/res/adm/includes
 1543: PerlSetVar       lonZipDir    /home/httpd/zipspool
 1544: PerlSetVar       lonCaptchaDir     /home/httpd/captchaspool
 1545: PerlSetVar       lonCaptchaDb     /home/httpd/captchadb 
 1546: PerlSetVar       lonFontsDir     /home/httpd/html/adm/fonts
 1547: # & separated list of : separated fields in order of
 1548: # - internal name to call it, 
 1549: # - regexp that it should match (done case-insensitively)
 1550: # - regexp that is should not match (done case-insensitively)
 1551: # - regexp that will pull out the version number into $1
 1552: # - a number that describes the minimum version that has mathml support
 1553: # - a number that describes the minimum number version that has unicode support
 1554: 
 1555: PerlSetVar       lonBrowsDet  explorer:msie:netscape:msie\s(\d+\.\d+)\;:9999:5&mozilla:mozilla\/[5-9]:msie:mozilla\/(\d+\.\d+)\s:9999:1&netscape:netscape:msie:netscape\/(\d+\.\d+):9999:7&netscape:netscape\/[7-9]:shouldnotmatch:netscape\/(\d+\.\d+):9999:7&amaya:amaya:mozilla:V(\d+\.\d+)\s:1:1&safari:safari:msie:safari\/([\d\.]+):9999:84
 1556: 
 1557: PerlSetVar       lonTextBrowsers windows\s+ce:lynx
 1558: PerlSetVar       lonScansDir  /home/httpd/scantron
 1559: PerlSetVar       lonScriptTimeout 10
 1560: PerlSetVar	 BugzillaHost	http://bugs.lon-capa.org/
 1561: PerlSetVar	 FAQHost	http://help.lon-capa.org/
 1562: # -----------------------------------------------------------------------------
 1563: # NOTE: lonSqlAccess key is the password for the MySQL user
 1564: # www@localhost.  This value must always be "localhostkey".
 1565: # The only security risk occurs when somebody logs in as 'www' on your system
 1566: # (in which case you have much bigger problems than whether or not they
 1567: # can access the non-authoritative loncapa database on your machine).
 1568: 
 1569: PerlSetVar       lonSqlAccess   localhostkey
 1570: 
 1571: #----------------------------------------------------------------------------
 1572: #
 1573: #   Parameters used by secure lond/lonc
 1574: 
 1575: #
 1576: #   Secure lond/lonc require ssl certificate and private
 1577: #   key files to function correctly.  The certificate
 1578: #   files need not be terribly secure, but the private key files
 1579: #   should be set up so that only www (the lonc/lond effective user)
 1580: #   can read them.
 1581: # 
 1582: #   The definition below is the full path to the directory that
 1583: #   contains the certificate and key files:
 1584: 
 1585: PerlSetVar lonCertificateDirectory /home/httpd/lonCerts
 1586: 
 1587: #
 1588: #  Secure lond/lonc require two certificates and a private host key.
 1589: #  The certificates required are that of the lonCAPA certificate authority
 1590: #  and the certificate that authority issued to this host.
 1591: #  lonnetCertificateAuthority is the name of the file that contains the
 1592: #                            lonCAPA certificate authority's certificate.
 1593: #  lonnetCertificate is the name of the file that contains the certificate
 1594: #                    issued to the host by the certificate authority.
 1595: #  Both of these variables are names of files assumed to be in 
 1596: #  lonCertificateDirectory:
 1597: 
 1598: PerlSetVar lonnetCertificateAuthority loncapaCA.pem
 1599: PerlSetVar lonnetCertificate          lonhostcert.pem
 1600: 
 1601: #
 1602: #  To generate the request for a certificate, and to negotiate the
 1603: #  initial ssl connection, the host requires a private key.  This key
 1604: #  is created at lonCAPA install time.  Did we mention above that it
 1605: #  should be set so that only www can read it?  The variale below
 1606: #  is the name of the file relative to lonnetCertificateDirectory
 1607: #  that has the host's private key.  Did we remember to tell you to
 1608: #  keep the permissions on that file set to rw-------  (0600)?
 1609: #  
 1610: 
 1611: PerlSetVar lonnetPrivateKey         lonKey.pem
 1612: 
 1613: # Did we mention that the file described above must have
 1614: # permissions really locked down so that it can't be stolen?
 1615: 
 1616: #-------------------------------------------------------------------------
 1617: 
 1618: #   Parameters that define where all the ssl stuff is that's needed
 1619: #   to generate certificate requests and, on a system that's a CA
 1620: #   the certificate authority.
 1621: #    
 1622: #    SSLProgram    -> Path to the openssl command
 1623: #    SSLDirectory  -> Directory containing ssl configuration files etc.
 1624: #    SSLCAConfig   -> Name of the SSL config file for the certificate 
 1625: #                     Authority.
 1626: #    SSLCAFile     -> Full path to the Certificate authority file 
 1627: #                    (on the cert manager system).
 1628: #    SSLEmail      -> E-mail address of loncapa certificate manager.
 1629: #    The following are good for the loncapa redhat installs and
 1630: #    the loncapa certificate authority system:
 1631: #
 1632: PerlSetVar SSLProgram	/usr/bin/openssl
 1633: PerlSetVar SSLDirectory /usr/share/ssl
 1634: PerlSetVar SSLCAConfig  loncapaca
 1635: PerlSetVar SSLCAFile    /usr/share/ssl/loncapaca/cacert.pem
 1636: PerlSetVar SSLEmail     certificate@lon-capa.org
 1637: 
 1638: #-------------------------------------------------------------------------
 1639: 
 1640: 
 1641: # ====================================== Include support for SSL rewrites
 1642: 
 1643: Include conf/loncapa_rewrite.conf
 1644: 
 1645: 
 1646: # ====================================== Include machine-specific configuration
 1647: 
 1648: Include conf/loncapa.conf
 1649: 
 1650: # ================================================= Include local configuration
 1651: 
 1652: Include conf/loncapa_apache_local*.conf
 1653: 
 1654: # ================================================== Initiate mod_perl starting
 1655: 
 1656: PerlRequire      conf/startup.pl
 1657: <IfDefine !MODPERL2>
 1658: PerlFreshRestart On
 1659: </IfDefine>

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