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