File:  [LON-CAPA] / loncom / loncapa_apache.conf
Revision 1.185.8.3: download - view: text, annotated - select for diffs
Fri Aug 20 20:33:24 2010 UTC (13 years, 8 months ago) by raeburn
Branches: version_2_9_X
CVS tags: version_2_9_1
Diff to branchpoint 1.185: preferred, unified
- Backport 1.196.

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

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