Annotation of loncom/loncapa_apache.conf, revision 1.279
1.1 harris41 1: ##
2: ## loncapa_apache.conf -- Apache HTTP LON-CAPA configuration file
3: ##
1.222 raeburn 4:
1.279 ! raeburn 5: # $Id: loncapa_apache.conf,v 1.278 2022/06/30 21:04:15 raeburn Exp $
1.1 harris41 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.223 raeburn 21: <IfModule !perl_module>
22: LoadModule perl_module modules/libperl.so
23: </IfModule>
1.47 albertel 24: <IfDefine !MODPERL2>
1.1 harris41 25: AddModule mod_perl.c
1.47 albertel 26: </IfDefine>
1.1 harris41 27:
1.63 albertel 28: <IfDefine MODPERL2>
29: PerlSetVar MODPERL2 1
30: </IfDefine>
1.1 harris41 31: # =============================================================== Miscellaneous
32:
1.229 raeburn 33: ServerAdmin consortium@loncapa.org
1.1 harris41 34: ExtendedStatus On
35: #
36: # LON-CAPA Section (extensions to srm.conf name space servicing)
37: #
38: # ===================================================================== Aliases
39:
1.167 banghart 40: Alias /zipspool/ /home/httpd/zipspool/
1.1 harris41 41: Alias /prtspool/ /home/httpd/prtspool/
1.177 raeburn 42: Alias /captchaspool/ /home/httpd/captchaspool/
1.210 raeburn 43: Alias /webdav/ /home/httpd/html/priv/
1.8 harris41 44: ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
1.214 raeburn 45: <IfModule mod_dav_fs.c>
46: DAVLockDB /home/httpd/webdav/DAVLock
47: </IfModule>
1.1 harris41 48:
49: # ================================================================= Directories
50:
51: # ------------------------------------------------------------- Access Handlers
52:
1.12 www 53: PerlTransHandler Apache::lontrans
1.129 albertel 54: PerlCleanupHandler Apache::lonacc::cleanup
1.12 www 55:
1.125 albertel 56: PerlAuthenHandler Apache::checkauthen
57: PerlSetVar lonOtherAuthen no
58:
1.212 raeburn 59: <IfModule mod_shib>
60: PerlAuthenHandler Apache::lonshibauth
61: PerlSetVar lonOtherAuthen yes
62: PerlSetVar lonOtherAuthenType Shibboleth
63: </IfModule>
64:
1.45 albertel 65: #PerlWarn On
1.183 raeburn 66: <LocationMatch "^/+res/adm/pages/[^/]+\.(gif|png)$">
1.228 raeburn 67: PerlAuthzHandler 'sub { return OK }'
1.183 raeburn 68: </LocationMatch>
69:
1.191 droeschl 70: # Send proper expires header to avoid unnecessary HTTP request for static content
1.241 raeburn 71: <LocationMatch "^(/adm/lonIcons|/adm/jQuery|/res/adm/pages|/ckeditor|/adm/jpicker|/adm/countdown|/adm/spellchecker|/adm/nicescroll|/adm/MathJax|/adm/daxe)">
1.191 droeschl 72: ExpiresActive On
73: ExpiresDefault "access plus 12 hours"
1.199 raeburn 74: Header set Cache-Control "public, no-transform"
1.191 droeschl 75: </LocationMatch>
76:
1.21 www 77: <LocationMatch "^/+res.*">
1.125 albertel 78:
1.139 albertel 79: AuthType LONCAPA
1.125 albertel 80: Require valid-user
81:
82: PerlAccessHandler Apache::publiccheck
83: PerlAuthzHandler Apache::lonacc
1.1 harris41 84: PerlHeaderParserHandler Apache::lonrep
85: ErrorDocument 403 /adm/login
86: ErrorDocument 404 /adm/notfound.html
87: ErrorDocument 406 /adm/roles
1.74 www 88: ErrorDocument 500 /adm/errorhandler
89: </LocationMatch>
90:
1.125 albertel 91:
92: <LocationMatch "/.*">
93: </LocationMatch>
94:
95:
1.74 www 96: <LocationMatch "^/+enc.*">
1.115 raeburn 97: SetHandler perl-script
1.127 albertel 98: PerlHandler Apache::lonencurl
1.74 www 99: ErrorDocument 403 /adm/login
1.80 albertel 100: ErrorDocument 404 /adm/notfound.html
101: ErrorDocument 406 /adm/roles
1.11 www 102: ErrorDocument 500 /adm/errorhandler
103: </LocationMatch>
104:
1.84 banghart 105: <Location /adm/portfolio>
1.139 albertel 106: AuthType LONCAPA
1.125 albertel 107: Require valid-user
108: PerlAuthzHandler Apache::lonacc
1.123 raeburn 109: SetHandler perl-script
1.126 albertel 110: PerlHandler Apache::portfolio
1.123 raeburn 111: </Location>
112:
1.136 raeburn 113: <Location /adm/coursegrp_portfolio>
1.139 albertel 114: AuthType LONCAPA
1.136 raeburn 115: Require valid-user
116: PerlAuthzHandler Apache::lonacc
117: SetHandler perl-script
118: PerlHandler Apache::portfolio
119: </Location>
120:
1.195 raeburn 121: <Location /adm/pdfupload>
122: AuthType LONCAPA
123: Require valid-user
124: PerlAuthzHandler Apache::lonacc
125: SetHandler perl-script
126: PerlHandler Apache::lonpdfupload
127: ErrorDocument 403 /adm/login
128: ErrorDocument 404 /adm/notfound.html
129: ErrorDocument 406 /adm/roles
130: ErrorDocument 500 /adm/errorhandler
131: </Location>
132:
1.21 www 133: <LocationMatch "^/+userfiles.*">
1.271 raeburn 134: Options +FollowSymLinks -Includes
1.11 www 135: PerlAccessHandler Apache::lontokacc
1.58 www 136: PerlCleanupHandler Apache::lontokacc::removefile
1.129 albertel 137: PerlCleanupHandler Apache::lonacc::cleanup
1.12 www 138: </LocationMatch>
139:
1.76 albertel 140: <LocationMatch "^/+uploaded.*">
1.139 albertel 141: AuthType LONCAPA
1.125 albertel 142: Require valid-user
143: PerlAuthzHandler Apache::lonacc
1.178 raeburn 144: PerlHandler Apache::londatecheck
145: PerlHandler Apache::lonipcheck
1.75 raeburn 146: PerlHeaderParserHandler Apache::lonuploadrep
1.80 albertel 147: ErrorDocument 403 /adm/login
1.16 www 148: ErrorDocument 404 /adm/notfound.html
1.80 albertel 149: ErrorDocument 406 /adm/roles
1.16 www 150: ErrorDocument 500 /adm/errorhandler
1.75 raeburn 151: </LocationMatch>
152:
1.274 raeburn 153: <LocationMatch "^/+uploaded/.+/.+/(portfolio|feedback|docs|groups|supplemental)/.+">
1.272 raeburn 154: Options +FollowSymLinks -Includes
155: </LocationMatch>
156:
1.106 albertel 157: <LocationMatch "^/+editupload.*">
1.139 albertel 158: AuthType LONCAPA
1.125 albertel 159: Require valid-user
160: PerlAuthzHandler Apache::lonacc
1.106 albertel 161: ErrorDocument 403 /adm/login
162: ErrorDocument 406 /adm/roles
163: ErrorDocument 500 /adm/errorhandler
164: </LocationMatch>
165:
1.98 albertel 166: <LocationMatch "^/+uploaded/.*/.*/internal/.*">
1.150 albertel 167: PerlAuthenHandler Apache::lonuploadedacc
168: PerlAuthzHandler Apache::lonuploadedacc::skip_phase
1.151 albertel 169: PerlAccessHandler Apache::lonuploadedacc::skip_phase
1.98 albertel 170: </LocationMatch>
171:
1.140 raeburn 172: <LocationMatch "^/+uploaded/.*/.*/portfolio/.*">
173: PerlAccessHandler Apache::publiccheck
1.141 albertel 174: AuthType LONCAPA
1.140 raeburn 175: Require valid-user
176: PerlAuthzHandler Apache::lonacc
177: </LocationMatch>
178:
179: <LocationMatch "^/+uploaded/.*/.*/groups/.*/portfolio/.*">
180: PerlAccessHandler Apache::publiccheck
1.141 albertel 181: AuthType LONCAPA
1.140 raeburn 182: Require valid-user
183: PerlAuthzHandler Apache::lonacc
184: </LocationMatch>
1.98 albertel 185:
1.76 albertel 186: <LocationMatch "^/+uploaded/.*\.page$">
1.75 raeburn 187: SetHandler perl-script
1.126 albertel 188: PerlHandler Apache::lonpage
1.75 raeburn 189: </LocationMatch>
190:
1.76 albertel 191: <LocationMatch "^/+uploaded/.*\.sequence$">
1.75 raeburn 192: SetHandler perl-script
1.126 albertel 193: PerlHandler Apache::lonsequence
1.16 www 194: </LocationMatch>
195:
1.44 www 196: <LocationMatch "^/+public/.*/syllabus$">
1.132 albertel 197: PerlAccessHandler Apache::publiccheck
1.139 albertel 198: AuthType LONCAPA
1.125 albertel 199: Require valid-user
200: PerlAuthzHandler Apache::lonacc
1.16 www 201: SetHandler perl-script
1.126 albertel 202: PerlHandler Apache::lonsyllabus
1.16 www 203: ErrorDocument 404 /adm/notfound.html
204: ErrorDocument 500 /adm/errorhandler
205: </LocationMatch>
206:
1.122 www 207: <LocationMatch "^/+(public|adm)/.*(\.rss|_rss\.html)$">
1.132 albertel 208: PerlAccessHandler Apache::publiccheck
1.139 albertel 209: AuthType LONCAPA
1.125 albertel 210: Require valid-user
211: PerlAuthzHandler Apache::lonacc
1.121 www 212: SetHandler perl-script
1.126 albertel 213: PerlHandler Apache::lonrss
1.121 www 214: ErrorDocument 404 /adm/notfound.html
215: ErrorDocument 500 /adm/errorhandler
216: </LocationMatch>
217:
1.44 www 218: <LocationMatch "^/adm/.*/aboutme$">
1.139 albertel 219: AuthType LONCAPA
1.125 albertel 220: Require valid-user
221: PerlAuthzHandler Apache::lonacc
1.16 www 222: SetHandler perl-script
1.126 albertel 223: PerlHandler Apache::lonaboutme
1.19 www 224: ErrorDocument 404 /adm/notfound.html
1.54 www 225: ErrorDocument 406 /adm/notinit.html
1.19 www 226: ErrorDocument 500 /adm/errorhandler
227: </LocationMatch>
228:
1.153 albertel 229: <LocationMatch "^/adm/.*/aboutme/portfolio$">
230: PerlAccessHandler Apache::publiccheck
231: AuthType LONCAPA
232: Require valid-user
233: PerlAuthzHandler Apache::lonacc
234: SetHandler perl-script
235: PerlHandler Apache::lonaboutme
236: ErrorDocument 404 /adm/notfound.html
237: ErrorDocument 406 /adm/notinit.html
238: ErrorDocument 500 /adm/errorhandler
239: </LocationMatch>
240:
1.44 www 241: <LocationMatch "^/adm/.*/smppg$">
1.139 albertel 242: AuthType LONCAPA
1.125 albertel 243: Require valid-user
244: PerlAuthzHandler Apache::lonacc
1.19 www 245: SetHandler perl-script
1.172 www 246: PerlHandler Apache::londatecheck
1.178 raeburn 247: PerlHandler Apache::lonipcheck
1.126 albertel 248: PerlHandler Apache::lonsimplepage
1.19 www 249: ErrorDocument 404 /adm/notfound.html
1.54 www 250: ErrorDocument 406 /adm/notinit.html
1.19 www 251: ErrorDocument 500 /adm/errorhandler
252: </LocationMatch>
253:
1.44 www 254: <LocationMatch "^/adm/.*/bulletinboard$">
1.139 albertel 255: AuthType LONCAPA
1.125 albertel 256: Require valid-user
257: PerlAuthzHandler Apache::lonacc
1.19 www 258: SetHandler perl-script
1.126 albertel 259: PerlHandler Apache::londatecheck
1.178 raeburn 260: PerlHandler Apache::lonipcheck
1.126 albertel 261: PerlHandler Apache::lonbulletin
1.55 www 262: ErrorDocument 404 /adm/notfound.html
263: ErrorDocument 406 /adm/notinit.html
264: ErrorDocument 500 /adm/errorhandler
265: </LocationMatch>
266:
267: <LocationMatch "\.problem/smpedit$">
1.139 albertel 268: AuthType LONCAPA
1.125 albertel 269: Require valid-user
270: PerlAuthzHandler Apache::lonacc
1.55 www 271: SetHandler perl-script
1.126 albertel 272: PerlHandler Apache::lonsimpleproblemedit
1.11 www 273: ErrorDocument 404 /adm/notfound.html
1.54 www 274: ErrorDocument 406 /adm/notinit.html
1.1 harris41 275: ErrorDocument 500 /adm/errorhandler
276: </LocationMatch>
277:
1.255 raeburn 278: <LocationMatch "^/adm/.*/ext\.tool$">
1.242 raeburn 279: AuthType LONCAPA
280: Require valid-user
281: PerlAuthzHandler Apache::lonacc
282: SetHandler perl-script
283: PerlHandler Apache::londatecheck
284: PerlHandler Apache::lonipcheck
285: PerlHandler Apache::lonexttool
286: ErrorDocument 404 /adm/notfound.html
287: ErrorDocument 406 /adm/notinit.html
288: ErrorDocument 500 /adm/errorhandler
289: </LocationMatch>
290:
1.244 raeburn 291: <LocationMatch "^/adm/placement$">
292: AuthType LONCAPA
293: Require valid-user
294: PerlAuthzHandler Apache::lonacc
295: SetHandler perl-script
296: PerlHandler Apache::lonplacementtest
297: ErrorDocument 404 /adm/notfound.html
298: ErrorDocument 406 /adm/notinit.html
299: ErrorDocument 500 /adm/errorhandler
300: </LocationMatch>
301:
1.268 raeburn 302: <Location /adm/exturlcheck>
303: AuthType LONCAPA
304: Require valid-user
305: PerlAuthzHandler Apache::lonacc
306: SetHandler perl-script
307: PerlHandler Apache::lonexturlcheck
308: ErrorDocument 403 /adm/login
309: ErrorDocument 404 /adm/notfound.html
310: ErrorDocument 406 /adm/unauthorized
311: ErrorDocument 500 /adm/errorhandler
312: </Location>
313:
1.205 www 314: <LocationMatch "^/+priv/.*">
1.139 albertel 315: AuthType LONCAPA
1.131 albertel 316: Require valid-user
1.125 albertel 317: PerlAuthzHandler Apache::loncacc
1.1 harris41 318: SetHandler perl-script
319: ErrorDocument 403 /adm/login
320: ErrorDocument 404 /adm/notfound.html
1.18 www 321: ErrorDocument 406 /adm/unauthorized
1.1 harris41 322: ErrorDocument 500 /adm/errorhandler
323: </LocationMatch>
324:
1.234 raeburn 325: <LocationMatch "^/+webdav/[\w\-.]+/\w[\w.\-\@]+/">
1.214 raeburn 326: <IfModule mod_dav.c>
327: <IfModule mod_ssl.c>
328: AuthType Basic
329: AuthName "LONCAPA username,domain"
330: Require valid-user
331: SSLRequireSSL
332: PerlAuthenHandler Apache::lonwebdavauth
333: PerlAuthzHandler Apache::lonwebdavacc
334: Dav On
335: DirectoryIndex index.missing
336: Options Indexes FollowSymLinks
337: ErrorDocument 403 /adm/nowebdav.html
338: ErrorDocument 404 /adm/notfound.html
339: ErrorDocument 406 /adm/unauthorized
340: ErrorDocument 500 /adm/errorhandler
341: </IfModule>
342: <IfModule !mod_ssl.c>
343: <IfModule mod_rewrite.c>
344: RewriteEngine on
345: RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]
346: </IfModule>
347: </IfModule>
1.211 raeburn 348: </IfModule>
1.214 raeburn 349: <IfModule !mod_dav.c>
1.211 raeburn 350: <IfModule mod_rewrite.c>
1.214 raeburn 351: RewriteEngine on
352: RewriteRule .* http://%{HTTP_HOST}/adm/nowebdav.html [L]
1.211 raeburn 353: </IfModule>
354: </IfModule>
1.210 raeburn 355: </LocationMatch>
356:
1.21 www 357: <LocationMatch "^/+raw.*">
1.1 harris41 358: PerlAccessHandler Apache::lonracc
359: </LocationMatch>
360:
1.41 bowersj2 361: <LocationMatch "^/adm/helper/.*\.helper$">
1.139 albertel 362: AuthType LONCAPA
1.125 albertel 363: Require valid-user
1.142 albertel 364: PerlAuthzHandler Apache::lonacc
1.41 bowersj2 365: SetHandler perl-script
1.126 albertel 366: PerlHandler Apache::lonhelper
1.41 bowersj2 367: ErrorDocument 403 /adm/login
368: ErrorDocument 404 /adm/notfound.html
369: ErrorDocument 406 /adm/unauthorized
370: ErrorDocument 500 /adm/errorhandler
371: </LocationMatch>
372:
1.23 albertel 373: <LocationMatch "/prtspool">
1.139 albertel 374: AuthType LONCAPA
1.125 albertel 375: Require valid-user
376: PerlAuthzHandler Apache::lonacc
1.23 albertel 377: ErrorDocument 403 /adm/login
378: ErrorDocument 404 /adm/notfound.html
379: ErrorDocument 406 /adm/roles
1.99 www 380: ErrorDocument 413 /adm/overloaded.txt
1.23 albertel 381: ErrorDocument 500 /adm/errorhandler
382: </LocationMatch>
1.167 banghart 383:
384: <LocationMatch "/zipspool">
385: AuthType LONCAPA
386: Require valid-user
387: PerlAuthzHandler Apache::lonacc
388: ErrorDocument 403 /adm/login
389: ErrorDocument 404 /adm/notfound.html
390: ErrorDocument 406 /adm/roles
391: ErrorDocument 413 /adm/overloaded.txt
392: ErrorDocument 500 /adm/errorhandler
393: </LocationMatch>
1.1 harris41 394: # ------------------------------------------------------------------------- RAT
395:
1.205 www 396: <LocationMatch "^/+priv/.*\.sequence$">
1.1 harris41 397: SetHandler perl-script
1.126 albertel 398: PerlHandler Apache::lonratedt
1.1 harris41 399: </LocationMatch>
400:
1.205 www 401: <LocationMatch "^/+priv/.*\.page$">
1.1 harris41 402: SetHandler perl-script
1.126 albertel 403: PerlHandler Apache::lonratedt
1.1 harris41 404: </LocationMatch>
405:
1.205 www 406: <LocationMatch "^/+priv/.*\/ratserver$">
1.1 harris41 407: SetHandler perl-script
1.126 albertel 408: PerlHandler Apache::lonratsrv
1.1 harris41 409: </LocationMatch>
410:
1.205 www 411: <LocationMatch "^/+priv/.*\/adveditmenu$">
1.100 raeburn 412: SetHandler perl-script
1.126 albertel 413: PerlHandler Apache::lonratmenu
1.100 raeburn 414: </LocationMatch>
415:
1.1 harris41 416: <Location /adm/ratparms>
1.139 albertel 417: AuthType LONCAPA
1.125 albertel 418: Require valid-user
419: PerlAuthzHandler Apache::lonacc
1.1 harris41 420: SetHandler perl-script
1.126 albertel 421: PerlHandler Apache::lonratparms
1.1 harris41 422: ErrorDocument 403 /adm/login
423: ErrorDocument 500 /adm/errorhandler
424: </Location>
425:
426: # --------------------------------------------- Resource Space Content Handlers
427:
1.64 albertel 428: <LocationMatch "^/+res.*/$">
1.1 harris41 429: SetHandler perl-script
1.126 albertel 430: PerlHandler Apache::lonindexer
1.29 www 431: PerlCleanupHandler Apache::lonindexer::cleanup
1.129 albertel 432: PerlCleanupHandler Apache::lonacc::cleanup
1.1 harris41 433: </LocationMatch>
434:
1.190 raeburn 435: <LocationMatch "^/+res.*\.tex$">
1.1 harris41 436: SetHandler perl-script
1.126 albertel 437: PerlHandler Apache::lontex
1.1 harris41 438: </LocationMatch>
439:
1.71 www 440: <LocationMatch "^/+res/.*\.page$">
1.1 harris41 441: SetHandler perl-script
1.126 albertel 442: PerlHandler Apache::lonpage
1.1 harris41 443: </LocationMatch>
444:
1.71 www 445: <LocationMatch "^/+res/.*\.sequence$">
1.1 harris41 446: SetHandler perl-script
1.126 albertel 447: PerlHandler Apache::lonsequence
1.1 harris41 448: </LocationMatch>
449:
1.205 www 450: <LocationMatch "^/+(res|priv|public|uploaded|editupload|adm)/.*\.meta$">
1.132 albertel 451: PerlAccessHandler Apache::publiccheck
1.1 harris41 452: SetHandler perl-script
1.126 albertel 453: PerlHandler Apache::lonmeta
1.99 www 454: ErrorDocument 413 /adm/overloaded.txt
1.39 www 455: </LocationMatch>
456:
1.71 www 457: <LocationMatch "^/adm/bombs/">
1.139 albertel 458: AuthType LONCAPA
1.125 albertel 459: Require valid-user
1.228 raeburn 460: PerlAuthzHandler Apache::lonacc
1.71 www 461: SetHandler perl-script
1.126 albertel 462: PerlHandler Apache::lonmeta
1.71 www 463: </LocationMatch>
464:
465:
466:
1.205 www 467: <LocationMatch "^/+(res|priv)/.*\.rights$">
1.39 www 468: SetHandler perl-script
1.126 albertel 469: PerlHandler Apache::lonrights
1.1 harris41 470: </LocationMatch>
471:
1.205 www 472: <LocationMatch "^/+(uploaded|res|priv)/.*\.(xml|html|htm|xhtml|xhtm|sty)$">
1.1 harris41 473: SetHandler perl-script
1.126 albertel 474: PerlHandler Apache::londatecheck
1.178 raeburn 475: PerlHandler Apache::lonipcheck
1.126 albertel 476: PerlHandler Apache::lonxml
1.1 harris41 477: </LocationMatch>
478:
1.205 www 479: <LocationMatch "^/+(res|priv).*\.(task|problem|exam|quiz|assess|survey|form|library)$">
1.1 harris41 480: SetHandler perl-script
1.126 albertel 481: PerlHandler Apache::lonhomework
1.1 harris41 482: </LocationMatch>
483:
1.205 www 484: <LocationMatch "^/+priv/.*\.(js|css|txt|tex)$">
1.185 raeburn 485: SetHandler perl-script
486: PerlHandler Apache::lonxml
487: </LocationMatch>
488:
1.253 damieng 489: <LocationMatch "^/daxepage/priv/">
1.236 damieng 490: AuthType LONCAPA
491: Require valid-user
492: PerlAuthzHandler Apache::loncacc
1.240 damieng 493: ErrorDocument 403 /adm/login
494: ErrorDocument 404 /adm/notfound.html
495: ErrorDocument 406 /adm/unauthorized
496: ErrorDocument 500 /adm/errorhandler
497: </LocationMatch>
498:
1.253 damieng 499: <LocationMatch "^/daxeopen/">
500: AuthType LONCAPA
501: Require valid-user
502: PerlAuthzHandler Apache::lonacc
503: </LocationMatch>
504:
1.240 damieng 505: <LocationMatch "^/daxe(page|open)/uploaded/">
506: AuthType LONCAPA
507: Require valid-user
508: PerlAuthzHandler Apache::lonacc
1.236 damieng 509: ErrorDocument 403 /adm/login
510: ErrorDocument 404 /adm/notfound.html
511: ErrorDocument 406 /adm/unauthorized
512: ErrorDocument 500 /adm/errorhandler
513: </LocationMatch>
514:
1.238 damieng 515: <LocationMatch "^/daxepage/priv/.*\.(task|problem|exam|quiz|assess|survey|library|xml|html|htm|xhtml|xhtm)$">
1.237 damieng 516: SetHandler perl-script
517: PerlHandler Apache::daxepage
518: </LocationMatch>
519:
1.243 damieng 520: <LocationMatch "^/daxepage/uploaded/[^/]+/[^/]+/.*html?$">
1.239 damieng 521: SetHandler perl-script
522: PerlHandler Apache::daxepage
523: </LocationMatch>
524:
1.238 damieng 525: <LocationMatch "^/daxeopen/priv/.*\.(task|problem|exam|quiz|assess|survey|library|xml|html|htm|xhtml|xhtm)$">
1.236 damieng 526: SetHandler perl-script
527: PerlHandler Apache::daxeopen
528: </LocationMatch>
529:
1.252 damieng 530: <LocationMatch "^/daxeopen/$">
531: SetHandler perl-script
532: PerlHandler Apache::daxeopen
533: </LocationMatch>
534:
1.253 damieng 535: <LocationMatch "^/daxeopen/(res|priv)/(.+/)?$">
1.236 damieng 536: SetHandler perl-script
537: PerlHandler Apache::daxeopen
538: </LocationMatch>
539:
1.243 damieng 540: <LocationMatch "^/daxeopen/uploaded/[^/]+/[^/]+/.*html?$">
1.239 damieng 541: SetHandler perl-script
542: PerlHandler Apache::daxeopen
543: </LocationMatch>
544:
1.246 raeburn 545: <LocationMatch "(?i)^/daxeopen/priv/.+\.(?!task$|problem$|exam$|quiz$|assess$|survey$|library$|xml$|html$|htm$|xhtml$|xhtm$)[^.]*$">
1.236 damieng 546: <IfModule mod_rewrite.c>
547: RewriteEngine on
1.245 raeburn 548: RewriteRule /daxeopen/(.*) /$1
1.236 damieng 549: </IfModule>
1.245 raeburn 550: </LocationMatch>
1.236 damieng 551:
1.252 damieng 552: <LocationMatch "(?i)^/daxeopen/(res/.*\.(jpg|jpeg|gif|png|svg))$">
553: <IfModule mod_rewrite.c>
554: RewriteEngine on
555: RewriteRule /daxeopen/(.*) /$1
556: </IfModule>
557: </LocationMatch>
558:
1.236 damieng 559: <LocationMatch "^/daxesave$">
560: AuthType LONCAPA
561: Require valid-user
562: PerlAuthzHandler Apache::lonacc
563: SetHandler perl-script
564: PerlHandler Apache::daxesave
565: </LocationMatch>
566:
1.247 raeburn 567: <Location /adm/coursepub>
568: AuthType LONCAPA
569: Require valid-user
570: PerlAuthzHandler Apache::lonacc
571: SetHandler perl-script
572: PerlHandler Apache::loncoursepub
573: ErrorDocument 404 /adm/notfound.html
574: ErrorDocument 500 /adm/errorhandler
575: </Location>
576:
1.1 harris41 577: <LocationMatch "^/adm/wrapper/">
1.139 albertel 578: AuthType LONCAPA
1.125 albertel 579: Require valid-user
580: PerlAuthzHandler Apache::lonacc
1.172 www 581: PerlHandler Apache::londatecheck
1.178 raeburn 582: PerlHandler Apache::lonipcheck
1.1 harris41 583: SetHandler perl-script
1.126 albertel 584: PerlHandler Apache::lonwrapper
1.66 www 585: ErrorDocument 403 /adm/login
586: ErrorDocument 500 /adm/errorhandler
587: </LocationMatch>
588:
1.113 www 589: <LocationMatch "^/adm/source">
1.139 albertel 590: AuthType LONCAPA
1.125 albertel 591: Require valid-user
592: PerlAuthzHandler Apache::lonacc
1.83 taceyjo1 593: SetHandler perl-script
1.126 albertel 594: PerlHandler Apache::lonsource
1.83 taceyjo1 595: ErrorDocument 403 /adm/login
1.85 www 596: ErrorDocument 406 /adm/roles
1.83 taceyjo1 597: ErrorDocument 500 /adm/errorhandler
598: </LocationMatch>
599:
600:
1.66 www 601: <LocationMatch "^/adm/localize/">
1.139 albertel 602: AuthType LONCAPA
1.125 albertel 603: Require valid-user
604: PerlAuthzHandler Apache::lonacc
1.66 www 605: SetHandler perl-script
1.126 albertel 606: PerlHandler Apache::lonlocalize
1.1 harris41 607: ErrorDocument 403 /adm/login
608: ErrorDocument 500 /adm/errorhandler
609: </LocationMatch>
610:
611: # -------------------------------------------------------------- Admin Programs
1.24 albertel 612:
613: <Location /adm/randomlabel.png>
1.139 albertel 614: AuthType LONCAPA
1.125 albertel 615: Require valid-user
616: PerlAuthzHandler Apache::lonacc
1.24 albertel 617: SetHandler perl-script
1.126 albertel 618: PerlHandler Apache::randomlylabel
1.69 albertel 619: ErrorDocument 403 /adm/login
620: ErrorDocument 500 /adm/errorhandler
621: </Location>
622:
623: <Location /adm/imagechoice>
1.139 albertel 624: AuthType LONCAPA
1.125 albertel 625: Require valid-user
626: PerlAuthzHandler Apache::lonacc
1.69 albertel 627: SetHandler perl-script
1.126 albertel 628: PerlHandler Apache::imagechoice
1.24 albertel 629: ErrorDocument 403 /adm/login
630: ErrorDocument 500 /adm/errorhandler
631: </Location>
1.1 harris41 632:
1.200 www 633: <Location /adm/searchcourse>
634: AuthType LONCAPA
635: Require valid-user
636: PerlAuthzHandler Apache::lonacc
637: SetHandler perl-script
638: PerlHandler Apache::lonsearchcourse
639: ErrorDocument 403 /adm/login
640: ErrorDocument 500 /adm/errorhandler
641: </Location>
642:
1.201 www 643: <Location /adm/indexcourse>
644: AuthType LONCAPA
645: Require valid-user
646: PerlAuthzHandler Apache::lonacc
647: SetHandler perl-script
648: PerlHandler Apache::lonindexcourse
649: ErrorDocument 403 /adm/login
650: ErrorDocument 500 /adm/errorhandler
651: </Location>
1.200 www 652:
1.1 harris41 653: <Location /adm/statistics>
1.139 albertel 654: AuthType LONCAPA
1.125 albertel 655: Require valid-user
656: PerlAuthzHandler Apache::lonacc
1.1 harris41 657: SetHandler perl-script
1.126 albertel 658: PerlHandler Apache::lonstatistics
1.1 harris41 659: ErrorDocument 403 /adm/login
1.20 www 660: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 661: ErrorDocument 500 /adm/errorhandler
662: </Location>
663:
1.92 matthew 664: <Location /adm/trackstudent>
1.139 albertel 665: AuthType LONCAPA
1.125 albertel 666: Require valid-user
667: PerlAuthzHandler Apache::lonacc
1.92 matthew 668: SetHandler perl-script
1.126 albertel 669: PerlHandler Apache::lontrackstudent
1.92 matthew 670: ErrorDocument 403 /adm/login
671: ErrorDocument 413 /adm/overloaded.txt
672: ErrorDocument 500 /adm/errorhandler
673: </Location>
674:
1.1 harris41 675: <Location /adm/roles>
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.126 albertel 680: PerlHandler Apache::lonroles
1.33 www 681: ErrorDocument 403 /adm/login
1.174 www 682: ErrorDocument 409 /adm/preferences?action=lockwarning
1.33 www 683: ErrorDocument 500 /adm/errorhandler
684: </Location>
685:
686: <Location /adm/menu>
1.139 albertel 687: AuthType LONCAPA
1.125 albertel 688: Require valid-user
689: PerlAuthzHandler Apache::lonacc
1.33 www 690: SetHandler perl-script
1.128 albertel 691: PerlHandler Apache::lonmainmenu
1.42 www 692: ErrorDocument 403 /adm/login
693: ErrorDocument 500 /adm/errorhandler
694: </Location>
695:
1.203 www 696: <Location /adm/pickresource>
697: AuthType LONCAPA
698: Require valid-user
699: PerlAuthzHandler Apache::lonacc
700: SetHandler perl-script
701: PerlHandler Apache::lonpickresource
702: ErrorDocument 403 /adm/login
703: ErrorDocument 500 /adm/errorhandler
704: </Location>
705:
1.176 raeburn 706: <Location /adm/pickauthor>
707: AuthType LONCAPA
708: Require valid-user
709: PerlAuthzHandler Apache::lonacc
710: SetHandler perl-script
711: PerlHandler Apache::lonpickauthor
712: ErrorDocument 403 /adm/login
713: ErrorDocument 500 /adm/errorhandler
714: </Location>
715:
1.27 www 716: <Location /adm/pickstudent>
1.139 albertel 717: AuthType LONCAPA
1.125 albertel 718: Require valid-user
719: PerlAuthzHandler Apache::lonacc
1.27 www 720: SetHandler perl-script
1.126 albertel 721: PerlHandler Apache::lonpickstudent
1.40 www 722: ErrorDocument 403 /adm/login
723: ErrorDocument 500 /adm/errorhandler
724: </Location>
725:
1.187 raeburn 726: <Location /adm/pickuser>
727: AuthType LONCAPA
728: Require valid-user
729: PerlAuthzHandler Apache::lonacc
730: SetHandler perl-script
731: PerlHandler Apache::lonpickuser
732: ErrorDocument 403 /adm/login
733: ErrorDocument 406 /adm/roles
734: ErrorDocument 500 /adm/errorhandler
735: </Location>
736:
1.40 www 737: <Location /adm/pickcourse>
1.139 albertel 738: AuthType LONCAPA
1.125 albertel 739: Require valid-user
740: PerlAuthzHandler Apache::lonacc
1.40 www 741: SetHandler perl-script
1.126 albertel 742: PerlHandler Apache::lonpickcourse
1.77 albertel 743: ErrorDocument 403 /adm/login
744: ErrorDocument 500 /adm/errorhandler
745: </Location>
746:
747: <Location /adm/pickcode>
1.139 albertel 748: AuthType LONCAPA
1.125 albertel 749: Require valid-user
750: PerlAuthzHandler Apache::lonacc
1.77 albertel 751: SetHandler perl-script
1.126 albertel 752: PerlHandler Apache::lonpickcode
1.1 harris41 753: ErrorDocument 403 /adm/login
754: ErrorDocument 500 /adm/errorhandler
755: </Location>
756:
1.215 raeburn 757: <Location /adm/dependencies>
758: AuthType LONCAPA
759: Require valid-user
760: PerlAuthzHandler Apache::lonacc
761: SetHandler perl-script
762: PerlHandler Apache::londependencies
763: ErrorDocument 403 /adm/login
764: ErrorDocument 406 /adm/roles
765: ErrorDocument 500 /adm/errorhandler
766: </Location>
767:
1.279 ! raeburn 768: <Location /adm/courseauthor>
! 769: AuthType LONCAPA
! 770: Require valid-user
! 771: PerlAuthzHandler Apache::lonacc
! 772: SetHandler perl-script
! 773: PerlHandler Apache::loncourseauthor
! 774: ErrorDocument 403 /adm/login
! 775: ErrorDocument 406 /adm/roles
! 776: ErrorDocument 500 /adm/errorhandler
! 777: </Location>
! 778:
1.1 harris41 779: <Location /adm/login>
780: SetHandler perl-script
1.126 albertel 781: PerlHandler Apache::lonlogin
1.1 harris41 782: </Location>
783:
1.275 raeburn 784: <LocationMatch "^/+adm/launch/tiny/[\w.-]+/\w+">
785: SetHandler perl-script
786: PerlHandler Apache::ltiauth
787: </LocationMatch>
788:
1.277 raeburn 789: <Location /adm/relaunch>
790: SetHandler perl-script
791: PerlHandler Apache::lonrelaunch
792: </Location>
793:
1.258 raeburn 794: <LocationMatch "^/+adm/lti($|/)">
795: SetHandler perl-script
1.259 raeburn 796: PerlHandler Apache::ltiauth
1.258 raeburn 797: </LocationMatch>
798:
1.261 raeburn 799: <Location /adm/service/passback>
800: SetHandler perl-script
801: PerlHandler Apache::ltipassback
802: </Location>
803:
1.260 raeburn 804: <Location /adm/service/roster>
805: SetHandler perl-script
806: PerlHandler Apache::ltiroster
807: </Location>
808:
1.269 raeburn 809: <LocationMatch "^/adm/service/logout/\w+$">
810: SetHandler perl-script
811: PerlHandler Apache::ltilogout
812: </LocationMatch>
813:
1.148 raeburn 814: <Location /adm/restrictedaccess>
815: PerlAccessHandler Apache::publiccheck
816: AuthType LONCAPA
1.152 albertel 817: Require valid-user
1.228 raeburn 818: PerlAuthzHandler Apache::lonacc
1.148 raeburn 819: SetHandler perl-script
820: PerlHandler Apache::restrictedaccess
1.154 albertel 821: ErrorDocument 500 /adm/errorhandler
1.148 raeburn 822: </Location>
823:
1.162 raeburn 824: <Location /adm/blockedaccess>
825: PerlAccessHandler Apache::publiccheck
826: AuthType LONCAPA
827: Require valid-user
1.228 raeburn 828: PerlAuthzHandler Apache::lonacc
1.162 raeburn 829: SetHandler perl-script
830: PerlHandler Apache::blockedaccess
831: ErrorDocument 500 /adm/errorhandler
832: </Location>
833:
1.267 raeburn 834: <Location /adm/protected>
835: PerlAccessHandler Apache::publiccheck
836: AuthType LONCAPA
837: Require valid-user
838: PerlAuthzHandler Apache::lonacc
839: SetHandler perl-script
840: PerlHandler Apache::lonprotected
841: ErrorDocument 403 /adm/login
842: ErrorDocument 500 /adm/errorhandler
843: </Location>
844:
1.1 harris41 845: <Location /adm/logout>
1.139 albertel 846: AuthType LONCAPA
1.125 albertel 847: Require valid-user
848: PerlAuthzHandler Apache::lonacc
1.1 harris41 849: SetHandler perl-script
1.126 albertel 850: PerlHandler Apache::lonlogout
1.1 harris41 851: ErrorDocument 403 /adm/login
1.175 www 852: ErrorDocument 409 /adm/preferences?action=lockwarning
1.154 albertel 853: ErrorDocument 500 /adm/errorhandler
1.1 harris41 854: </Location>
855:
1.117 albertel 856: <Location /adm/switchserver>
1.139 albertel 857: AuthType LONCAPA
1.125 albertel 858: Require valid-user
859: PerlAuthzHandler Apache::lonacc
1.117 albertel 860: SetHandler perl-script
1.126 albertel 861: PerlHandler Apache::switchserver
1.117 albertel 862: ErrorDocument 403 /adm/login
1.154 albertel 863: ErrorDocument 500 /adm/errorhandler
1.117 albertel 864: </Location>
865:
1.1 harris41 866: <Location /adm/authenticate>
867: SetHandler perl-script
1.126 albertel 868: PerlHandler Apache::lonauth
1.1 harris41 869: </Location>
870:
1.117 albertel 871: <Location /adm/migrateuser>
872: SetHandler perl-script
1.126 albertel 873: PerlHandler Apache::migrateuser
1.117 albertel 874: </Location>
875:
1.212 raeburn 876: <Location /adm/sso>
1.276 raeburn 877: Header set Cache-Control "private,no-store,no-cache,max-age=0"
1.212 raeburn 878: <IfModule mod_shib>
879: AuthType shibboleth
880: ShibUseEnvironment On
881: ShibRequestSetting requireSession 1
882: ShibRequestSetting redirectToSSL 443
883: require valid-user
884: PerlAuthzHandler Apache::lonshibacc
885: PerlAuthzHandler Apache::lonacc
1.276 raeburn 886: ErrorDocument 403 /adm/login
887: ErrorDocument 500 /adm/errorhandler
1.212 raeburn 888: </IfModule>
1.213 raeburn 889: <IfModule !mod_shib>
890: PerlTypeHandler Apache::lonnoshib
891: </IfModule>
1.212 raeburn 892: </Location>
893:
1.278 raeburn 894: <Location /adm/linkexit>
895: AuthType LONCAPA
896: Require valid-user
897: PerlAuthzHandler Apache::lonacc
898: SetHandler perl-script
899: PerlHandler Apache::lonlinkexit
900: ErrorDocument 403 /adm/login
901: ErrorDocument 409 /adm/preferences?action=lockwarning
902: ErrorDocument 500 /adm/errorhandler
903: </Location>
904:
1.1 harris41 905: <Location /adm/annotations>
1.139 albertel 906: AuthType LONCAPA
1.125 albertel 907: Require valid-user
908: PerlAuthzHandler Apache::lonacc
1.1 harris41 909: SetHandler perl-script
1.126 albertel 910: PerlHandler Apache::admannotations
1.1 harris41 911: ErrorDocument 403 /adm/login
912: ErrorDocument 500 /adm/errorhandler
913: </Location>
914:
1.265 raeburn 915: <Location /adm/annotation>
916: AuthType LONCAPA
917: Require valid-user
918: PerlAuthzHandler Apache::lonacc
919: SetHandler perl-script
920: PerlHandler Apache::admannotations
921: ErrorDocument 403 /adm/login
922: ErrorDocument 500 /adm/errorhandler
923: </Location>
924:
1.91 www 925: <Location /adm/spellcheck>
1.139 albertel 926: AuthType LONCAPA
1.125 albertel 927: Require valid-user
928: PerlAuthzHandler Apache::lonacc
1.91 www 929: SetHandler perl-script
1.126 albertel 930: PerlHandler Apache::lonspeller
1.91 www 931: ErrorDocument 403 /adm/login
932: ErrorDocument 500 /adm/errorhandler
933: </Location>
934:
1.1 harris41 935: <Location /adm/flip>
1.139 albertel 936: AuthType LONCAPA
1.125 albertel 937: Require valid-user
938: PerlAuthzHandler Apache::lonacc
1.1 harris41 939: SetHandler perl-script
1.126 albertel 940: PerlHandler Apache::lonpageflip
1.30 www 941: PerlCleanupHandler Apache::lonpageflip::cleanup
1.129 albertel 942: PerlCleanupHandler Apache::lonacc::cleanup
1.1 harris41 943: ErrorDocument 406 /adm/roles
944: ErrorDocument 403 /adm/login
945: ErrorDocument 500 /adm/errorhandler
946: </Location>
947:
948: <Location /adm/ambiguous>
1.139 albertel 949: AuthType LONCAPA
1.125 albertel 950: Require valid-user
951: PerlAuthzHandler Apache::lonacc
1.1 harris41 952: SetHandler perl-script
1.126 albertel 953: PerlHandler Apache::lonambiguous
1.30 www 954: PerlCleanupHandler Apache::lonambiguous::cleanup
1.129 albertel 955: PerlCleanupHandler Apache::lonacc::cleanup
1.1 harris41 956: ErrorDocument 403 /adm/login
957: ErrorDocument 500 /adm/errorhandler
958: </Location>
959:
960: <Location /adm/email>
1.139 albertel 961: AuthType LONCAPA
1.125 albertel 962: Require valid-user
963: PerlAuthzHandler Apache::lonacc
1.1 harris41 964: SetHandler perl-script
1.130 albertel 965: PerlHandler Apache::lonmsgdisplay
1.1 harris41 966: ErrorDocument 403 /adm/login
967: ErrorDocument 500 /adm/errorhandler
968: </Location>
969:
1.116 raeburn 970: <Location /adm/notify>
1.139 albertel 971: AuthType LONCAPA
1.125 albertel 972: Require valid-user
973: PerlAuthzHandler Apache::lonacc
1.116 raeburn 974: SetHandler perl-script
1.126 albertel 975: PerlHandler Apache::lonnotify
1.116 raeburn 976: ErrorDocument 403 /adm/login
977: ErrorDocument 500 /adm/errorhandler
978: </Location>
979:
1.1 harris41 980: <Location /adm/parmset>
1.139 albertel 981: AuthType LONCAPA
1.125 albertel 982: Require valid-user
983: PerlAuthzHandler Apache::lonacc
1.1 harris41 984: SetHandler perl-script
1.126 albertel 985: PerlHandler Apache::lonparmset
1.31 bowersj2 986: ErrorDocument 403 /adm/login
987: ErrorDocument 406 /adm/roles
988: ErrorDocument 500 /adm/errorhandler
989: </Location>
990:
1.185 raeburn 991: <Location /adm/courseprefs>
992: AuthType LONCAPA
993: Require valid-user
994: PerlAuthzHandler Apache::lonacc
995: SetHandler perl-script
996: PerlHandler Apache::courseprefs
997: ErrorDocument 403 /adm/login
998: ErrorDocument 406 /adm/roles
999: ErrorDocument 500 /adm/errorhandler
1000: </Location>
1001:
1.110 albertel 1002: <Location /adm/slotrequest>
1.139 albertel 1003: AuthType LONCAPA
1.125 albertel 1004: Require valid-user
1005: PerlAuthzHandler Apache::lonacc
1.110 albertel 1006: SetHandler perl-script
1.126 albertel 1007: PerlHandler Apache::slotrequest
1.110 albertel 1008: ErrorDocument 403 /adm/login
1009: ErrorDocument 406 /adm/roles
1010: ErrorDocument 500 /adm/errorhandler
1011: </Location>
1012:
1.31 bowersj2 1013: <Location /adm/wizard>
1.139 albertel 1014: AuthType LONCAPA
1.125 albertel 1015: Require valid-user
1016: PerlAuthzHandler Apache::lonacc
1.31 bowersj2 1017: SetHandler perl-script
1.126 albertel 1018: PerlHandler Apache::lonwizard
1.1 harris41 1019: ErrorDocument 403 /adm/login
1020: ErrorDocument 406 /adm/roles
1021: ErrorDocument 500 /adm/errorhandler
1022: </Location>
1023:
1024: <Location /adm/grades>
1.139 albertel 1025: AuthType LONCAPA
1.125 albertel 1026: Require valid-user
1027: PerlAuthzHandler Apache::lonacc
1.1 harris41 1028: SetHandler perl-script
1.126 albertel 1029: PerlHandler Apache::grades
1.1 harris41 1030: ErrorDocument 403 /adm/login
1031: ErrorDocument 406 /adm/roles
1032: ErrorDocument 500 /adm/errorhandler
1033: </Location>
1034:
1.187 raeburn 1035: <Location /adm/requestcourse>
1036: AuthType LONCAPA
1037: Require valid-user
1038: PerlAuthzHandler Apache::lonacc
1039: SetHandler perl-script
1040: PerlHandler Apache::lonrequestcourse
1041: ErrorDocument 403 /adm/login
1042: ErrorDocument 406 /adm/roles
1043: ErrorDocument 500 /adm/errorhandler
1044: </Location>
1045:
1.1 harris41 1046: <Location /adm/createcourse>
1.139 albertel 1047: AuthType LONCAPA
1.125 albertel 1048: Require valid-user
1049: PerlAuthzHandler Apache::lonacc
1.1 harris41 1050: SetHandler perl-script
1.126 albertel 1051: PerlHandler Apache::loncreatecourse
1.1 harris41 1052: ErrorDocument 403 /adm/login
1053: ErrorDocument 406 /adm/roles
1054: ErrorDocument 500 /adm/errorhandler
1.67 raeburn 1055: </Location>
1056:
1057: <Location /adm/modifycourse>
1.139 albertel 1058: AuthType LONCAPA
1.125 albertel 1059: Require valid-user
1060: PerlAuthzHandler Apache::lonacc
1.67 raeburn 1061: SetHandler perl-script
1.126 albertel 1062: PerlHandler Apache::lonmodifycourse
1.67 raeburn 1063: ErrorDocument 403 /adm/login
1064: ErrorDocument 406 /adm/roles
1065: ErrorDocument 500 /adm/errorhandler
1.1 harris41 1066: </Location>
1067:
1.163 raeburn 1068: <Location /adm/domainprefs>
1069: AuthType LONCAPA
1070: Require valid-user
1071: PerlAuthzHandler Apache::lonacc
1072: SetHandler perl-script
1073: PerlHandler Apache::domainprefs
1074: ErrorDocument 403 /adm/login
1075: ErrorDocument 406 /adm/roles
1076: ErrorDocument 500 /adm/errorhandler
1077: </Location>
1078:
1.182 raeburn 1079: <Location /adm/domainstatus>
1080: PerlAccessHandler Apache::lonstatusacc
1081: SetHandler perl-script
1082: PerlHandler Apache::domainstatus
1083: ErrorDocument 403 /adm/login
1084: ErrorDocument 406 /adm/roles
1085: ErrorDocument 500 /adm/errorhandler
1086: </Location>
1087:
1.1 harris41 1088: <Location /adm/createuser>
1.139 albertel 1089: AuthType LONCAPA
1.125 albertel 1090: Require valid-user
1091: PerlAuthzHandler Apache::lonacc
1.1 harris41 1092: SetHandler perl-script
1.126 albertel 1093: PerlHandler Apache::loncreateuser
1.1 harris41 1094: ErrorDocument 403 /adm/login
1095: ErrorDocument 406 /adm/roles
1096: ErrorDocument 500 /adm/errorhandler
1097: </Location>
1098:
1099: <Location /adm/publish>
1.139 albertel 1100: AuthType LONCAPA
1.125 albertel 1101: Require valid-user
1102: PerlAuthzHandler Apache::lonacc
1.1 harris41 1103: SetHandler perl-script
1.126 albertel 1104: PerlHandler Apache::lonpublisher
1.1 harris41 1105: ErrorDocument 403 /adm/login
1106: ErrorDocument 404 /adm/notfound.html
1.18 www 1107: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1108: ErrorDocument 500 /adm/errorhandler
1109: </Location>
1110:
1.205 www 1111: <LocationMatch "^/+priv/.*/$">
1.139 albertel 1112: AuthType LONCAPA
1.131 albertel 1113: Require valid-user
1.125 albertel 1114: PerlAuthzHandler Apache::loncacc
1.1 harris41 1115: SetHandler perl-script
1.126 albertel 1116: PerlHandler Apache::lonpubdir
1.1 harris41 1117: ErrorDocument 403 /adm/login
1118: ErrorDocument 404 /adm/notfound.html
1.18 www 1119: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1120: ErrorDocument 500 /adm/errorhandler
1121: </LocationMatch>
1122:
1.18 www 1123: <Location /adm/unauthorized>
1.139 albertel 1124: AuthType LONCAPA
1.125 albertel 1125: Require valid-user
1126: PerlAuthzHandler Apache::lonacc
1.18 www 1127: SetHandler perl-script
1.126 albertel 1128: PerlHandler Apache::lonunauthorized
1.18 www 1129: ErrorDocument 403 /adm/login
1130: ErrorDocument 404 /adm/notfound.html
1.1 harris41 1131: ErrorDocument 500 /adm/errorhandler
1132: </Location>
1133:
1134: <Location /adm/retrieve>
1.139 albertel 1135: AuthType LONCAPA
1.125 albertel 1136: Require valid-user
1137: PerlAuthzHandler Apache::lonacc
1.1 harris41 1138: SetHandler perl-script
1.126 albertel 1139: PerlHandler Apache::lonretrieve
1.1 harris41 1140: ErrorDocument 403 /adm/login
1141: ErrorDocument 404 /adm/notfound.html
1.18 www 1142: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1143: ErrorDocument 500 /adm/errorhandler
1144: </Location>
1145:
1.109 www 1146: <Location /adm/cleanup>
1.139 albertel 1147: AuthType LONCAPA
1.125 albertel 1148: Require valid-user
1149: PerlAuthzHandler Apache::lonacc
1.109 www 1150: SetHandler perl-script
1.126 albertel 1151: PerlHandler Apache::loncleanup
1.109 www 1152: ErrorDocument 403 /adm/login
1153: ErrorDocument 404 /adm/notfound.html
1154: ErrorDocument 406 /adm/unauthorized
1155: ErrorDocument 500 /adm/errorhandler
1156: </Location>
1157:
1.1 harris41 1158: <Location /adm/cfile>
1.139 albertel 1159: AuthType LONCAPA
1.125 albertel 1160: Require valid-user
1161: PerlAuthzHandler Apache::lonacc
1.1 harris41 1162: SetHandler perl-script
1.126 albertel 1163: PerlHandler Apache::loncfile
1.1 harris41 1164: ErrorDocument 403 /adm/login
1165: ErrorDocument 404 /adm/notfound.html
1.18 www 1166: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1167: ErrorDocument 500 /adm/errorhandler
1168: </Location>
1169:
1170: <Location /adm/diff>
1.139 albertel 1171: AuthType LONCAPA
1.125 albertel 1172: Require valid-user
1173: PerlAuthzHandler Apache::lonacc
1.1 harris41 1174: SetHandler perl-script
1.126 albertel 1175: PerlHandler Apache::londiff
1.1 harris41 1176: ErrorDocument 403 /adm/login
1177: ErrorDocument 404 /adm/notfound.html
1.18 www 1178: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1179: ErrorDocument 500 /adm/errorhandler
1180: </Location>
1181:
1182: <Location /adm/upload>
1.139 albertel 1183: AuthType LONCAPA
1.125 albertel 1184: Require valid-user
1185: PerlAuthzHandler Apache::lonacc
1.1 harris41 1186: SetHandler perl-script
1.126 albertel 1187: PerlHandler Apache::lonupload
1.1 harris41 1188: ErrorDocument 403 /adm/login
1189: ErrorDocument 404 /adm/notfound.html
1.18 www 1190: ErrorDocument 406 /adm/unauthorized
1.1 harris41 1191: ErrorDocument 500 /adm/errorhandler
1.72 raeburn 1192: </Location>
1193:
1.73 raeburn 1194: <Location /adm/imsimport>
1.139 albertel 1195: AuthType LONCAPA
1.125 albertel 1196: Require valid-user
1197: PerlAuthzHandler Apache::lonacc
1.73 raeburn 1198: SetHandler perl-script
1.126 albertel 1199: PerlHandler Apache::imsimport
1.73 raeburn 1200: ErrorDocument 403 /adm/login
1201: ErrorDocument 404 /adm/notfound.html
1202: ErrorDocument 406 /adm/unauthorized
1203: ErrorDocument 500 /adm/errorhandler
1204: </Location>
1205:
1.72 raeburn 1206: <Location /adm/testbank>
1.139 albertel 1207: AuthType LONCAPA
1.125 albertel 1208: Require valid-user
1209: PerlAuthzHandler Apache::lonacc
1.72 raeburn 1210: SetHandler perl-script
1.126 albertel 1211: PerlHandler Apache::testbankimport
1.72 raeburn 1212: ErrorDocument 403 /adm/login
1213: ErrorDocument 404 /adm/notfound.html
1214: ErrorDocument 406 /adm/unauthorized
1215: ErrorDocument 500 /adm/errorhandler
1.1 harris41 1216: </Location>
1217:
1218: <Location /adm/assesscalc>
1.139 albertel 1219: AuthType LONCAPA
1.125 albertel 1220: Require valid-user
1221: PerlAuthzHandler Apache::lonacc
1.1 harris41 1222: SetHandler perl-script
1.126 albertel 1223: PerlHandler Apache::lonspreadsheet
1.1 harris41 1224: ErrorDocument 403 /adm/login
1225: ErrorDocument 406 /adm/roles
1.20 www 1226: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1227: ErrorDocument 500 /adm/errorhandler
1228: </Location>
1229:
1230: <Location /adm/studentcalc>
1.139 albertel 1231: AuthType LONCAPA
1.125 albertel 1232: Require valid-user
1233: PerlAuthzHandler Apache::lonacc
1.1 harris41 1234: SetHandler perl-script
1.126 albertel 1235: PerlHandler Apache::lonspreadsheet
1.1 harris41 1236: ErrorDocument 403 /adm/login
1237: ErrorDocument 406 /adm/roles
1.20 www 1238: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1239: ErrorDocument 500 /adm/errorhandler
1240: </Location>
1241:
1242: <Location /adm/classcalc>
1.139 albertel 1243: AuthType LONCAPA
1.125 albertel 1244: Require valid-user
1245: PerlAuthzHandler Apache::lonacc
1.1 harris41 1246: SetHandler perl-script
1.126 albertel 1247: PerlHandler Apache::lonspreadsheet
1.1 harris41 1248: ErrorDocument 403 /adm/login
1249: ErrorDocument 406 /adm/roles
1.20 www 1250: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1251: ErrorDocument 500 /adm/errorhandler
1252: </Location>
1253:
1254: <Location /adm/dropadd>
1.139 albertel 1255: AuthType LONCAPA
1.125 albertel 1256: Require valid-user
1257: PerlAuthzHandler Apache::lonacc
1.1 harris41 1258: SetHandler perl-script
1.126 albertel 1259: PerlHandler Apache::londropadd
1.44 www 1260: ErrorDocument 403 /adm/login
1261: ErrorDocument 406 /adm/roles
1262: ErrorDocument 500 /adm/errorhandler
1.65 raeburn 1263: </Location>
1264:
1.92 matthew 1265: <Location /adm/viewclasslist>
1.139 albertel 1266: AuthType LONCAPA
1.125 albertel 1267: Require valid-user
1268: PerlAuthzHandler Apache::lonacc
1.92 matthew 1269: SetHandler perl-script
1.126 albertel 1270: PerlHandler Apache::lonviewclasslist
1.92 matthew 1271: ErrorDocument 403 /adm/login
1272: ErrorDocument 406 /adm/roles
1273: ErrorDocument 500 /adm/errorhandler
1274: </Location>
1275:
1.118 raeburn 1276: <Location /adm/coursegroups>
1.139 albertel 1277: AuthType LONCAPA
1.125 albertel 1278: Require valid-user
1279: PerlAuthzHandler Apache::lonacc
1.118 raeburn 1280: SetHandler perl-script
1.126 albertel 1281: PerlHandler Apache::loncoursegroups
1.118 raeburn 1282: ErrorDocument 403 /adm/login
1283: ErrorDocument 406 /adm/roles
1284: ErrorDocument 500 /adm/errorhandler
1285: </Location>
1286:
1.143 raeburn 1287: <Location /adm/groupboards>
1288: AuthType LONCAPA
1289: Require valid-user
1290: PerlAuthzHandler Apache::lonacc
1291: SetHandler perl-script
1292: PerlHandler Apache::groupboards
1293: ErrorDocument 403 /adm/login
1294: ErrorDocument 406 /adm/roles
1295: ErrorDocument 500 /adm/errorhandler
1296: </Location>
1297:
1.144 raeburn 1298: <Location /adm/grouproster>
1299: AuthType LONCAPA
1300: Require valid-user
1301: PerlAuthzHandler Apache::lonacc
1302: SetHandler perl-script
1303: PerlHandler Apache::grouproster
1304: ErrorDocument 403 /adm/login
1305: ErrorDocument 406 /adm/roles
1306: ErrorDocument 500 /adm/errorhandler
1307: </Location>
1308:
1.112 raeburn 1309: <Location /adm/whatsnew>
1.139 albertel 1310: AuthType LONCAPA
1.125 albertel 1311: Require valid-user
1312: PerlAuthzHandler Apache::lonacc
1.112 raeburn 1313: SetHandler perl-script
1.126 albertel 1314: PerlHandler Apache::lonwhatsnew
1.112 raeburn 1315: ErrorDocument 403 /adm/login
1316: ErrorDocument 406 /adm/roles
1317: ErrorDocument 500 /adm/errorhandler
1318: </Location>
1319:
1.65 raeburn 1320: <Location /adm/populate>
1.139 albertel 1321: AuthType LONCAPA
1.125 albertel 1322: Require valid-user
1323: PerlAuthzHandler Apache::lonacc
1.65 raeburn 1324: SetHandler perl-script
1.126 albertel 1325: PerlHandler Apache::lonpopulate
1.65 raeburn 1326: ErrorDocument 403 /adm/login
1327: ErrorDocument 406 /adm/roles
1328: ErrorDocument 500 /adm/errorhandler
1.44 www 1329: </Location>
1330:
1331: <Location /adm/managekeys>
1.139 albertel 1332: AuthType LONCAPA
1.125 albertel 1333: Require valid-user
1334: PerlAuthzHandler Apache::lonacc
1.44 www 1335: SetHandler perl-script
1.126 albertel 1336: PerlHandler Apache::lonmanagekeys
1.1 harris41 1337: ErrorDocument 403 /adm/login
1338: ErrorDocument 406 /adm/roles
1339: ErrorDocument 500 /adm/errorhandler
1340: </Location>
1341:
1342: <Location /adm/printout>
1.139 albertel 1343: AuthType LONCAPA
1.125 albertel 1344: Require valid-user
1345: PerlAuthzHandler Apache::lonacc
1.1 harris41 1346: SetHandler perl-script
1.126 albertel 1347: PerlHandler Apache::lonprintout
1.1 harris41 1348: ErrorDocument 403 /adm/login
1.20 www 1349: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1350: ErrorDocument 500 /adm/errorhandler
1351: </Location>
1352:
1353: <Location /adm/feedback>
1.139 albertel 1354: AuthType LONCAPA
1.125 albertel 1355: Require valid-user
1356: PerlAuthzHandler Apache::lonacc
1.1 harris41 1357: SetHandler perl-script
1.126 albertel 1358: PerlHandler Apache::lonfeedback
1.10 www 1359: ErrorDocument 403 /adm/login
1360: ErrorDocument 500 /adm/errorhandler
1361: </Location>
1362:
1363: <Location /adm/coursedocs>
1.139 albertel 1364: AuthType LONCAPA
1.125 albertel 1365: Require valid-user
1366: PerlAuthzHandler Apache::lonacc
1.10 www 1367: SetHandler perl-script
1.126 albertel 1368: PerlHandler Apache::londocs
1.108 albertel 1369: PerlCleanupHandler Apache::londocs::untiehash
1.129 albertel 1370: PerlCleanupHandler Apache::lonacc::cleanup
1.10 www 1371: ErrorDocument 403 /adm/login
1372: ErrorDocument 500 /adm/errorhandler
1.73 raeburn 1373: </Location>
1374:
1.207 raeburn 1375: <Location /adm/supplemental>
1376: AuthType LONCAPA
1377: Require valid-user
1378: PerlAuthzHandler Apache::lonacc
1379: SetHandler perl-script
1380: PerlHandler Apache::londocs
1381: PerlCleanupHandler Apache::londocs::untiehash
1382: PerlCleanupHandler Apache::lonacc::cleanup
1383: ErrorDocument 403 /adm/login
1384: ErrorDocument 500 /adm/errorhandler
1385: </Location>
1386:
1.73 raeburn 1387: <Location /adm/imsimportdocs>
1.139 albertel 1388: AuthType LONCAPA
1.125 albertel 1389: Require valid-user
1390: PerlAuthzHandler Apache::lonacc
1.73 raeburn 1391: SetHandler perl-script
1.126 albertel 1392: PerlHandler Apache::imsimportdocs
1.73 raeburn 1393: ErrorDocument 403 /adm/login
1394: ErrorDocument 500 /adm/errorhandler
1.10 www 1395: </Location>
1396:
1.224 raeburn 1397: <Location /adm/extresedit>
1398: AuthType LONCAPA
1399: Require valid-user
1400: PerlAuthzHandler Apache::lonacc
1401: SetHandler perl-script
1402: PerlHandler Apache::lonextresedit
1403: ErrorDocument 403 /adm/login
1404: ErrorDocument 500 /adm/errorhandler
1405: </Location>
1406:
1.135 www 1407: <LocationMatch "^/adm/announcements">
1.139 albertel 1408: AuthType LONCAPA
1.125 albertel 1409: Require valid-user
1410: PerlAuthzHandler Apache::lonacc
1.10 www 1411: SetHandler perl-script
1.126 albertel 1412: PerlHandler Apache::lonannounce
1.10 www 1413: ErrorDocument 403 /adm/login
1414: ErrorDocument 500 /adm/errorhandler
1.135 www 1415: </LocationMatch>
1.10 www 1416:
1417: <Location /adm/chat>
1.139 albertel 1418: AuthType LONCAPA
1.125 albertel 1419: Require valid-user
1420: PerlAuthzHandler Apache::lonacc
1.10 www 1421: SetHandler perl-script
1.126 albertel 1422: PerlHandler Apache::lonchat
1.13 www 1423: ErrorDocument 500 /adm/errorhandler
1424: </Location>
1425:
1426: <Location /adm/chatfetch>
1.139 albertel 1427: AuthType LONCAPA
1.125 albertel 1428: Require valid-user
1429: PerlAuthzHandler Apache::lonacc
1.13 www 1430: SetHandler perl-script
1.126 albertel 1431: PerlHandler Apache::lonchatfetch
1.20 www 1432: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1433: ErrorDocument 500 /adm/errorhandler
1434: </Location>
1435:
1.137 albertel 1436: <Location /adm/groupchat>
1.139 albertel 1437: AuthType LONCAPA
1.137 albertel 1438: Require valid-user
1439: PerlAuthzHandler Apache::lonacc
1440: SetHandler perl-script
1441: PerlHandler Apache::longroupchat
1442: ErrorDocument 403 /adm/login
1443: ErrorDocument 500 /adm/errorhandler
1444: </Location>
1445:
1.1 harris41 1446: <Location /adm/evaluate>
1.139 albertel 1447: AuthType LONCAPA
1.125 albertel 1448: Require valid-user
1449: PerlAuthzHandler Apache::lonacc
1.1 harris41 1450: SetHandler perl-script
1.126 albertel 1451: PerlHandler Apache::lonevaluate
1.1 harris41 1452: ErrorDocument 403 /adm/login
1453: ErrorDocument 500 /adm/errorhandler
1454: </Location>
1455:
1456: <Location /adm/preferences>
1.139 albertel 1457: AuthType LONCAPA
1.125 albertel 1458: Require valid-user
1459: PerlAuthzHandler Apache::lonacc
1.1 harris41 1460: SetHandler perl-script
1.126 albertel 1461: PerlHandler Apache::lonpreferences
1.1 harris41 1462: ErrorDocument 403 /adm/login
1463: ErrorDocument 500 /adm/errorhandler
1464: </Location>
1465:
1466: <Location /adm/communicate>
1.139 albertel 1467: AuthType LONCAPA
1.125 albertel 1468: Require valid-user
1469: PerlAuthzHandler Apache::lonacc
1.1 harris41 1470: SetHandler perl-script
1.126 albertel 1471: PerlHandler Apache::loncommunicate
1.1 harris41 1472: ErrorDocument 403 /adm/login
1473: ErrorDocument 500 /adm/errorhandler
1474: </Location>
1475:
1476: <Location /adm/searchcat>
1.139 albertel 1477: AuthType LONCAPA
1.125 albertel 1478: Require valid-user
1479: PerlAuthzHandler Apache::lonacc
1.1 harris41 1480: SetHandler perl-script
1.126 albertel 1481: PerlHandler Apache::lonsearchcat
1.28 www 1482: PerlCleanupHandler Apache::lonsearchcat::cleanup
1.129 albertel 1483: PerlCleanupHandler Apache::lonacc::cleanup
1.1 harris41 1484: ErrorDocument 403 /adm/login
1.20 www 1485: ErrorDocument 413 /adm/overloaded.txt
1.1 harris41 1486: ErrorDocument 500 /adm/errorhandler
1487: </Location>
1488:
1489: <Location /adm/navmaps>
1.139 albertel 1490: AuthType LONCAPA
1.125 albertel 1491: Require valid-user
1492: PerlAuthzHandler Apache::lonacc
1.1 harris41 1493: SetHandler perl-script
1.160 albertel 1494: PerlHandler Apache::lonnavdisplay
1.1 harris41 1495: ErrorDocument 403 /adm/login
1496: ErrorDocument 406 /adm/roles
1497: ErrorDocument 500 /adm/errorhandler
1.26 bowersj2 1498: </Location>
1499:
1500: <Location /adm/quickgrades>
1.139 albertel 1501: AuthType LONCAPA
1.125 albertel 1502: Require valid-user
1503: PerlAuthzHandler Apache::lonacc
1.26 bowersj2 1504: SetHandler perl-script
1.126 albertel 1505: PerlHandler Apache::lonquickgrades
1.26 bowersj2 1506: ErrorDocument 403 /adm/login
1507: ErrorDocument 406 /adm/roles
1508: ErrorDocument 500 /adm/errorhandler
1.1 harris41 1509: </Location>
1510:
1511: <Location /adm/groupsort>
1.139 albertel 1512: AuthType LONCAPA
1.125 albertel 1513: Require valid-user
1514: PerlAuthzHandler Apache::lonacc
1.1 harris41 1515: SetHandler perl-script
1.126 albertel 1516: PerlHandler Apache::groupsort
1.29 www 1517: PerlCleanupHandler Apache::groupsort::cleanup
1.129 albertel 1518: PerlCleanupHandler Apache::lonacc::cleanup
1.1 harris41 1519: ErrorDocument 403 /adm/login
1.251 raeburn 1520: ErrorDocument 406 /adm/roles
1.1 harris41 1521: ErrorDocument 500 /adm/errorhandler
1522: </Location>
1523:
1.197 wenzelju 1524: <Location /adm/wishlist>
1525: AuthType LONCAPA
1526: Require valid-user
1527: PerlAuthzHandler Apache::lonacc
1528: SetHandler perl-script
1.202 wenzelju 1529: PerlHandler Apache::lonwishlistdisplay
1.197 wenzelju 1530: ErrorDocument 403 /adm/login
1531: ErrorDocument 406 /adm/roles
1532: ErrorDocument 500 /adm/errorhandler
1533: </Location>
1534:
1.208 raeburn 1535: <Location /adm/setblock>
1536: AuthType LONCAPA
1537: Require valid-user
1538: PerlAuthzHandler Apache::lonacc
1539: SetHandler perl-script
1540: PerlHandler Apache::lonblockingmenu
1541: ErrorDocument 403 /adm/login
1.209 raeburn 1542: ErrorDocument 406 /adm/roles
1.208 raeburn 1543: ErrorDocument 500 /adm/errorhandler
1544: </Location>
1545:
1.186 droeschl 1546: <Location /adm/blockingstatus>
1.188 droeschl 1547: PerlAccessHandler Apache::publiccheck
1.186 droeschl 1548: AuthType LONCAPA
1549: Require valid-user
1550: PerlAuthzHandler Apache::lonacc
1.188 droeschl 1551: SetHandler perl-script
1552: PerlHandler Apache::lonblockingstatus
1.186 droeschl 1553: </Location>
1554:
1.249 raeburn 1555: <Location /adm/accesstimes>
1556: AuthType LONCAPA
1557: Require valid-user
1558: PerlAuthzHandler Apache::lonacc
1559: SetHandler perl-script
1560: PerlHandler Apache::lonaccesstimes
1561: ErrorDocument 403 /adm/login
1562: ErrorDocument 406 /adm/roles
1563: ErrorDocument 500 /adm/errorhandler
1564: </Location>
1565:
1.1 harris41 1566: <Location /adm/errorhandler>
1567: SetHandler perl-script
1.126 albertel 1568: PerlHandler Apache::lonerrorhandler
1.1 harris41 1569: </Location>
1570:
1.7 bowersj2 1571: <LocationMatch "^/adm/help/.*\.hlp$">
1.139 albertel 1572: AuthType LONCAPA
1.125 albertel 1573: Require valid-user
1.147 albertel 1574: PerlAccessHandler Apache::publiccheck
1.125 albertel 1575: PerlAuthzHandler Apache::lonacc
1.7 bowersj2 1576: SetHandler perl-script
1.126 albertel 1577: PerlHandler Apache::lonhelp
1.154 albertel 1578: ErrorDocument 500 /adm/errorhandler
1.7 bowersj2 1579: </LocationMatch>
1580:
1.90 raeburn 1581: <LocationMatch "^/adm/helpmenu">
1.139 albertel 1582: AuthType LONCAPA
1.125 albertel 1583: Require valid-user
1584: PerlAuthzHandler Apache::lonacc
1.90 raeburn 1585: SetHandler perl-script
1.126 albertel 1586: PerlHandler Apache::lonhelpmenu
1.154 albertel 1587: ErrorDocument 500 /adm/errorhandler
1.90 raeburn 1588: </LocationMatch>
1589:
1590: <LocationMatch "^/adm/support">
1.139 albertel 1591: AuthType LONCAPA
1.125 albertel 1592: Require valid-user
1593: PerlAuthzHandler Apache::lonacc
1.90 raeburn 1594: SetHandler perl-script
1.126 albertel 1595: PerlHandler Apache::lonsupportreq
1.154 albertel 1596: ErrorDocument 500 /adm/errorhandler
1.90 raeburn 1597: </LocationMatch>
1598:
1.100 raeburn 1599: <LocationMatch "^/adm/helpdesk">
1600: SetHandler perl-script
1.126 albertel 1601: PerlHandler Apache::lonsupportreq
1.154 albertel 1602: ErrorDocument 500 /adm/errorhandler
1.100 raeburn 1603: </LocationMatch>
1604:
1.221 raeburn 1605: <LocationMatch "^/adm/css/.*\.css$">
1.133 albertel 1606: SetHandler perl-script
1607: PerlHandler Apache::loncss
1.154 albertel 1608: ErrorDocument 500 /adm/errorhandler
1.133 albertel 1609: </LocationMatch>
1610:
1.155 raeburn 1611: <LocationMatch "^/adm/coursecatalog">
1612: SetHandler perl-script
1613: PerlHandler Apache::coursecatalog
1.156 albertel 1614: ErrorDocument 500 /adm/errorhandler
1.155 raeburn 1615: </LocationMatch>
1616:
1.161 raeburn 1617: <LocationMatch "^/adm/resetpw">
1618: SetHandler perl-script
1619: PerlHandler Apache::resetpw
1620: ErrorDocument 500 /adm/errorhandler
1621: </LocationMatch>
1.155 raeburn 1622:
1.173 raeburn 1623: <LocationMatch "^/adm/selfenroll">
1624: SetHandler perl-script
1625: PerlHandler Apache::selfenroll
1626: ErrorDocument 500 /adm/errorhandler
1627: </LocationMatch>
1628:
1.171 raeburn 1629: <LocationMatch "^/adm/createaccount">
1630: SetHandler perl-script
1631: PerlHandler Apache::createaccount
1632: ErrorDocument 500 /adm/errorhandler
1633: </LocationMatch>
1634:
1.165 albertel 1635: <LocationMatch "^/adm/dns">
1636: SetHandler perl-script
1637: PerlHandler Apache::londns
1638: ErrorDocument 500 /adm/errorhandler
1639: </LocationMatch>
1.164 albertel 1640:
1.219 foxr 1641: <LocationMatch "^/ajax/spellcheck">
1.218 foxr 1642: SetHandler perl-script
1.219 foxr 1643: PerlHandler Apache::spellcheck
1.218 foxr 1644: </LocationMatch>
1645:
1.266 raeburn 1646: <LocationMatch "^/tiny/[\w.-]+/\w+$">
1.262 raeburn 1647: AuthType LONCAPA
1648: Require valid-user
1649: PerlAuthzHandler Apache::lonacc
1650: SetHandler perl-script
1651: PerlHandler Apache::lontiny
1652: ErrorDocument 403 /adm/login
1653: ErrorDocument 406 /adm/roles
1654: ErrorDocument 500 /adm/errorhandler
1655: </LocationMatch>
1.218 foxr 1656:
1.1 harris41 1657: # ------------------------------------------------- Backdoor Adm Tests/Programs
1658:
1659: <Location /adm/test>
1.181 raeburn 1660: PerlAccessHandler Apache::lonstatusacc
1.1 harris41 1661: SetHandler perl-script
1.126 albertel 1662: PerlHandler Apache::lontest
1.1 harris41 1663: </Location>
1664:
1665: # ------------------------------------------------------- Shutting down a child
1666:
1.129 albertel 1667: PerlChildExitHandler Apache::lonacc::goodbye
1.1 harris41 1668:
1669: #
1670: # LON-CAPA Section (extensions to access.conf permission configuration)
1671: #
1672: # =========================================================== Directory Options
1673:
1674: # Start out with "no"
1675:
1676: <Directory />
1677: Options None
1678: AllowOverride None
1.226 raeburn 1679: <IfModule mod_authz_core.c>
1680: Require all denied
1681: </IfModule>
1682: <IfModule !mod_authz_core.c>
1683: order deny,allow
1684: deny from all
1685: </IfModule>
1.158 raeburn 1686: </Directory>
1687:
1688: # Allow uploaded files to be served
1689:
1690: <Directory "/home/httpd/lonUsers">
1.257 raeburn 1691: Options FollowSymLinks
1.158 raeburn 1692: AllowOverride None
1.226 raeburn 1693: <IfModule mod_authz_core.c>
1694: Require all granted
1695: </IfModule>
1696: <IfModule !mod_authz_core.c>
1697: order allow,deny
1698: allow from all
1699: </IfModule>
1.158 raeburn 1700: </Directory>
1701:
1.1 harris41 1702: # Yes to symbolic links and server-side includes
1703:
1704: <Directory /home/httpd/html>
1.257 raeburn 1705: Options FollowSymLinks
1.1 harris41 1706: AllowOverride None
1.226 raeburn 1707: <IfModule mod_authz_core.c>
1708: Require all granted
1709: </IfModule>
1710: <IfModule !mod_authz_core.c>
1711: order allow,deny
1712: allow from all
1713: </IfModule>
1.1 harris41 1714: </Directory>
1715:
1716: # If it is in cgi-bin, then it can be executed as a CGI script.
1717:
1718: <Directory /home/httpd/cgi-bin>
1719: AllowOverride None
1.157 albertel 1720: Options ExecCGI FollowSymLinks
1.226 raeburn 1721: <IfModule mod_authz_core.c>
1722: Require all granted
1723: </IfModule>
1724: <IfModule !mod_authz_core.c>
1725: order allow,deny
1726: allow from all
1727: </IfModule>
1.159 raeburn 1728: </Directory>
1729:
1730: # Allow serving of files in prtspool
1731:
1732: <Directory "/home/httpd/prtspool/">
1.256 raeburn 1733: Options FollowSymLinks
1.159 raeburn 1734: AllowOverride None
1.226 raeburn 1735: <IfModule mod_authz_core.c>
1736: Require all granted
1737: </IfModule>
1738: <IfModule !mod_authz_core.c>
1739: order allow,deny
1740: allow from all
1741: </IfModule>
1.1 harris41 1742: </Directory>
1743:
1.167 banghart 1744: # Allow serving of files in zipspool
1745:
1746: <Directory "/home/httpd/zipspool/">
1.256 raeburn 1747: Options FollowSymLinks
1.167 banghart 1748: AllowOverride None
1.226 raeburn 1749: <IfModule mod_authz_core.c>
1750: Require all granted
1751: </IfModule>
1752: <IfModule !mod_authz_core.c>
1753: order allow,deny
1754: allow from all
1755: </IfModule>
1.167 banghart 1756: </Directory>
1757:
1.177 raeburn 1758: # Allow serving of files in captchaspool
1759:
1760: <Directory "/home/httpd/captchaspool/">
1.256 raeburn 1761: Options FollowSymLinks
1.177 raeburn 1762: AllowOverride None
1.226 raeburn 1763: <IfModule mod_authz_core.c>
1764: Require all granted
1765: </IfModule>
1766: <IfModule !mod_authz_core.c>
1767: order allow,deny
1768: allow from all
1769: </IfModule>
1.177 raeburn 1770: </Directory>
1771:
1.227 raeburn 1772: <DirectoryMatch "^/home/httpd/html/priv/.+/">
1773: DirectoryIndex disabled
1774: </DirectoryMatch>
1775:
1.235 raeburn 1776: <DirectoryMatch "^/home/httpd/html/res/.+/">
1777: DirectoryIndex disabled
1778: </DirectoryMatch>
1779:
1.1 harris41 1780: # ============================================================= Access Handlers
1781:
1782: # ------------------------------------------------- Allow server-status reports
1783: <Location /server-status>
1.181 raeburn 1784: PerlAccessHandler Apache::lonstatusacc
1.1 harris41 1785: SetHandler server-status
1786: </Location>
1787:
1788: # ------------------------ Allow LON-CAPA "low-level" connection status reports
1.181 raeburn 1789: <LocationMatch "^/+lon-status/.*">
1790: PerlAccessHandler Apache::lonstatusacc
1791: ErrorDocument 406 /adm/roles
1792: ErrorDocument 500 /adm/errorhandler
1793: </LocationMatch>
1.1 harris41 1794:
1795: # ------------------- Allow access to local system documentation from localhost
1796: Alias /doc /usr/doc
1797: <Directory /usr/doc>
1798: Options Indexes FollowSymLinks
1.226 raeburn 1799: <IfModule mod_authz_host.c>
1800: Require local
1801: </IfModule>
1802: <IfModule !mod_authz_host.c>
1803: order deny,allow
1804: deny from all
1805: allow from localhost
1806: </IfModule>
1.1 harris41 1807: </Directory>
1808:
1809: # ******** THESE "SHOULD" NEVER BE ALTERED BY THE USER ************************
1810: # ====================================== Internal Settings / Perl Configuration
1811:
1.250 raeburn 1812: PerlSetVar lonVersion '<!-- VERSION -->'
1.1 harris41 1813: PerlSetVar lonIDsDir /home/httpd/lonIDs
1.264 raeburn 1814: PerlSetVar lonBalanceDir /home/httpd/balanceIDs
1.210 raeburn 1815: PerlSetVar lonDAVsessDir /home/httpd/webdav/sessionIDs
1.1 harris41 1816: PerlSetVar lonTabDir /home/httpd/lonTabs
1817: PerlSetVar lonUsersDir /home/httpd/lonUsers
1818: PerlSetVar lonIconsURL /adm/lonIcons
1819: PerlSetVar londPort 5663
1.229 raeburn 1820: PerlSetVar lonSysEMail techsupport@loncapa.org
1.1 harris41 1821: PerlSetVar lonDaemons /home/httpd/perl
1.184 foxr 1822: PerlSetVar lonLib /home/httpd/lib
1.1 harris41 1823: PerlSetVar lonSockDir /home/httpd/sockets
1.164 albertel 1824: PerlSetVar lonSockCreate /home/httpd/sockets/common
1.1 harris41 1825: PerlSetVar lonDocRoot /home/httpd/html
1.98 albertel 1826: PerlSetVar lonPrtDir /home/httpd/prtspool
1.1 harris41 1827: PerlSetVar lonIncludes /home/httpd/html/res/adm/includes
1.166 banghart 1828: PerlSetVar lonZipDir /home/httpd/zipspool
1.177 raeburn 1829: PerlSetVar lonCaptchaDir /home/httpd/captchaspool
1830: PerlSetVar lonCaptchaDb /home/httpd/captchadb
1.258 raeburn 1831: PerlSetVar lonLTIDir /home/httpd/lonLTItmp
1.269 raeburn 1832: PerlSetVar ltiIDsDir /home/httpd/ltiIDs
1.168 albertel 1833: PerlSetVar lonFontsDir /home/httpd/html/adm/fonts
1.231 raeburn 1834: # & separated list of % separated fields in order of
1.119 albertel 1835: # - internal name to call it,
1836: # - regexp that it should match (done case-insensitively)
1837: # - regexp that is should not match (done case-insensitively)
1838: # - regexp that will pull out the version number into $1
1839: # - a number that describes the minimum version that has mathml support
1840: # - a number that describes the minimum number version that has unicode support
1841:
1.233 raeburn 1842: 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&chrome%chrome%chromeframe%\s+chrome\/(\d+\.\d+)%9999%1&explorer%\s+rv\:\d+\.\d+%firefox%\s+rv\:(\d+\.\d+)%9999%5&opera%\sOPR\/\d+\.\d+%shouldnotmatch%\sOPR\/(\d+\.\d+)%9999%6&opera%^Opera\/9.80\s.+Version\/\d+\.\d+$%shouldnotmatch%Version\/(\d+\.\d+)$%9999%6&opera%^Opera\/\d+\.\d+\s%Version\/\d+\.\d+$%^Opera\/(\d+\.\d+)\s%9999%6
1.119 albertel 1843:
1.105 albertel 1844: PerlSetVar lonTextBrowsers windows\s+ce:lynx
1.43 albertel 1845: PerlSetVar lonScansDir /home/httpd/scantron
1846: PerlSetVar lonScriptTimeout 10
1.270 raeburn 1847: PerlSetVar BugzillaHost https://bugs.loncapa.org/
1.70 www 1848: PerlSetVar FAQHost http://help.lon-capa.org/
1.2 harris41 1849: # -----------------------------------------------------------------------------
1850: # NOTE: lonSqlAccess key is the password for the MySQL user
1851: # www@localhost. This value must always be "localhostkey".
1852: # The only security risk occurs when somebody logs in as 'www' on your system
1853: # (in which case you have much bigger problems than whether or not they
1854: # can access the non-authoritative loncapa database on your machine).
1855:
1856: PerlSetVar lonSqlAccess localhostkey
1857:
1.86 foxr 1858: #----------------------------------------------------------------------------
1859: #
1.79 foxr 1860: # Parameters used by secure lond/lonc
1861:
1862: #
1863: # Secure lond/lonc require ssl certificate and private
1864: # key files to function correctly. The certificate
1865: # files need not be terribly secure, but the private key files
1866: # should be set up so that only www (the lonc/lond effective user)
1867: # can read them.
1868: #
1869: # The definition below is the full path to the directory that
1870: # contains the certificate and key files:
1.82 foxr 1871:
1.79 foxr 1872: PerlSetVar lonCertificateDirectory /home/httpd/lonCerts
1873:
1874: #
1875: # Secure lond/lonc require two certificates and a private host key.
1876: # The certificates required are that of the lonCAPA certificate authority
1877: # and the certificate that authority issued to this host.
1878: # lonnetCertificateAuthority is the name of the file that contains the
1879: # lonCAPA certificate authority's certificate.
1880: # lonnetCertificate is the name of the file that contains the certificate
1881: # issued to the host by the certificate authority.
1882: # Both of these variables are names of files assumed to be in
1883: # lonCertificateDirectory:
1884:
1885: PerlSetVar lonnetCertificateAuthority loncapaCA.pem
1886: PerlSetVar lonnetCertificate lonhostcert.pem
1.248 raeburn 1887: PerlSetVar lonnetHostnameCertificate lonhostnamecert.pem
1.263 raeburn 1888: PerlSetVar lonnetCertRevocationList loncapaCAcrl.pem
1.79 foxr 1889:
1890: #
1891: # To generate the request for a certificate, and to negotiate the
1892: # initial ssl connection, the host requires a private key. This key
1893: # is created at lonCAPA install time. Did we mention above that it
1894: # should be set so that only www can read it? The variale below
1895: # is the name of the file relative to lonnetCertificateDirectory
1896: # that has the host's private key. Did we remember to tell you to
1897: # keep the permissions on that file set to rw------- (0600)?
1898: #
1899:
1900: PerlSetVar lonnetPrivateKey lonKey.pem
1901:
1902: # Did we mention that the file described above must have
1903: # permissions really locked down so that it can't be stolen?
1904:
1.86 foxr 1905: #-------------------------------------------------------------------------
1906:
1907: # Parameters that define where all the ssl stuff is that's needed
1908: # to generate certificate requests and, on a system that's a CA
1909: # the certificate authority.
1910: #
1911: # SSLProgram -> Path to the openssl command
1912: # SSLDirectory -> Directory containing ssl configuration files etc.
1913: # SSLCAConfig -> Name of the SSL config file for the certificate
1914: # Authority.
1.87 foxr 1915: # SSLCAFile -> Full path to the Certificate authority file
1916: # (on the cert manager system).
1917: # SSLEmail -> E-mail address of loncapa certificate manager.
1.86 foxr 1918: # The following are good for the loncapa redhat installs and
1919: # the loncapa certificate authority system:
1920: #
1921: PerlSetVar SSLProgram /usr/bin/openssl
1922: PerlSetVar SSLDirectory /usr/share/ssl
1923: PerlSetVar SSLCAConfig loncapaca
1.87 foxr 1924: PerlSetVar SSLCAFile /usr/share/ssl/loncapaca/cacert.pem
1.93 albertel 1925: PerlSetVar SSLEmail certificate@lon-capa.org
1.86 foxr 1926:
1927: #-------------------------------------------------------------------------
1928:
1.79 foxr 1929:
1.204 raeburn 1930: # ====================================== Include support for SSL rewrites
1931:
1932: Include conf/loncapa_rewrite.conf
1.79 foxr 1933:
1.2 harris41 1934:
1.8 harris41 1935: # ====================================== Include machine-specific configuration
1.2 harris41 1936:
1937: Include conf/loncapa.conf
1.61 albertel 1938:
1939: # ================================================= Include local configuration
1940:
1941: Include conf/loncapa_apache_local*.conf
1.1 harris41 1942:
1943: # ================================================== Initiate mod_perl starting
1944:
1945: PerlRequire conf/startup.pl
1.47 albertel 1946: <IfDefine !MODPERL2>
1.1 harris41 1947: PerlFreshRestart On
1.47 albertel 1948: </IfDefine>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>