File:  [LON-CAPA] / loncom / loncapa_apache.conf
Revision 1.138: download - view: text, annotated - select for diffs
Thu May 18 20:01:22 2006 UTC (17 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- access checking is done in the Autz phase now

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

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