Annotation of loncom/loncapa_apache.conf, revision 1.2

1.1       harris41    1: ##
                      2: ## loncapa_apache.conf -- Apache HTTP LON-CAPA configuration file
                      3: ##
1.2     ! harris41    4: ## $Id: loncapa_apache.conf,v 1.1 2002/05/12 19:11:31 harris41 Exp $
1.1       harris41    5: ##
                      6: ## 1/11/2002 - Scott Harrison
                      7: ## 2/19/2002 - Scott Harrison
                      8: ## 2/28/2002 - Scott Harrison
                      9: ## 3/2/2002 - Scott Harrison
                     10: ## 5/12/2002 - Scott Harrison
                     11: 
                     12: #
                     13: # LON-CAPA Section (extensions to httpd.conf daemon configuration)
                     14: #
                     15: # ======================================================================== User
                     16: 
                     17: DocumentRoot "/home/httpd/html"
                     18: 
                     19: # ======================================================================== User
                     20: 
                     21: User www
                     22: Group www
                     23: 
                     24: # ======================================================= Shared Object Modules
                     25: 
                     26: LoadModule perl_module       modules/libperl.so
                     27: AddModule mod_perl.c
                     28: 
                     29: # =============================================================== Miscellaneous
                     30: 
                     31: ServerAdmin korte@lite.msu.edu
                     32: ExtendedStatus On
                     33: 
                     34: #
                     35: # LON-CAPA Section (extensions to srm.conf name space servicing)
                     36: #
                     37: # ===================================================================== Aliases
                     38: 
                     39: Alias /prtspool/ /home/httpd/prtspool/
                     40: 
                     41: # ================================================================= Directories
                     42: 
                     43: # ------------------------------------------------------------- Access Handlers
                     44: 
                     45: <LocationMatch "^/res.*">
                     46: PerlAccessHandler       Apache::lonacc
                     47: PerlHeaderParserHandler Apache::lonrep
                     48: ErrorDocument     403 /adm/login
                     49: ErrorDocument     404 /adm/notfound.html
                     50: ErrorDocument     406 /adm/roles
                     51: ErrorDocument	  500 /adm/errorhandler
                     52: </LocationMatch>
                     53: 
                     54: <LocationMatch "^/priv.*">
                     55: PerlAccessHandler Apache::loncacc
                     56: SetHandler        perl-script
                     57: PerlHandler       Apache::lonconstruct
                     58: ErrorDocument     403 /adm/login
                     59: ErrorDocument     404 /adm/notfound.html
                     60: ErrorDocument     406 /adm/unauthorized.html
                     61: ErrorDocument	  500 /adm/errorhandler
                     62: </LocationMatch>
                     63: 
                     64: <LocationMatch "^/raw.*">
                     65: PerlAccessHandler Apache::lonracc
                     66: </LocationMatch>
                     67: 
                     68: <LocationMatch "^/\~.*">
                     69: PerlAccessHandler Apache::loncacc
                     70: ErrorDocument     403 /adm/login
                     71: ErrorDocument     404 /adm/notfound.html
                     72: ErrorDocument     406 /adm/unauthorized.html
                     73: ErrorDocument	  500 /adm/errorhandler
                     74: AllowOverride None
                     75: </LocationMatch>
                     76: 
                     77: # ------------------------------------------------------------------------- RAT
                     78: 
                     79: <LocationMatch "^/\~.*\.sequence$">
                     80: SetHandler perl-script
                     81: PerlHandler Apache::lonratedt
                     82: </LocationMatch>
                     83: 
                     84: <LocationMatch "^/\~.*\.page$">
                     85: SetHandler perl-script
                     86: PerlHandler Apache::lonratedt
                     87: </LocationMatch>
                     88: 
                     89: <LocationMatch "^/\~.*\/ratserver$">
                     90: SetHandler perl-script
                     91: PerlHandler Apache::lonratsrv
                     92: </LocationMatch>
                     93: 
                     94: <Location /adm/ratparms>
                     95: PerlAccessHandler       Apache::lonacc
                     96: SetHandler perl-script
                     97: PerlHandler Apache::lonratparms
                     98: ErrorDocument     403 /adm/login
                     99: ErrorDocument	  500 /adm/errorhandler
                    100: </Location>
                    101: 
                    102: # --------------------------------------------- Resource Space Content Handlers
                    103: 
                    104: <LocationMatch "^/res.*/$">
                    105: SetHandler perl-script
                    106: PerlHandler Apache::lonindexer
                    107: </LocationMatch>
                    108: 
                    109: <LocationMatch "^/(res|\~).*\.tex$">
                    110: SetHandler perl-script
                    111: PerlHandler Apache::lontex
                    112: </LocationMatch>
                    113: 
                    114: <LocationMatch "^/res/.*\.page$>
                    115: SetHandler perl-script
                    116: PerlHandler Apache::lonpage
                    117: </LocationMatch>
                    118: 
                    119: <LocationMatch "^/res/.*\.sequence$>
                    120: SetHandler perl-script
                    121: PerlHandler Apache::lonsequence
                    122: </LocationMatch>
                    123: 
                    124: <LocationMatch "^/res/.*\.meta$>
                    125: SetHandler perl-script
                    126: PerlHandler Apache::lonmeta
                    127: </LocationMatch>
                    128: 
                    129: <LocationMatch "^/(res|\~).*\.(xml|html|htm|xhtml|xhtm)$">
                    130: SetHandler perl-script
                    131: PerlHandler Apache::lonxml
                    132: </LocationMatch>
                    133: 
                    134: <LocationMatch "^/(res|\~).*\.(problem|exam|quiz|assess|survey|form|library)$">
                    135: SetHandler perl-script
                    136: PerlHandler Apache::lonhomework
                    137: </LocationMatch>
                    138: 
                    139: <LocationMatch "^/adm/wrapper/">
                    140: PerlAccessHandler       Apache::lonacc
                    141: SetHandler perl-script
                    142: PerlHandler Apache::lonwrapper
                    143: ErrorDocument     403 /adm/login
                    144: ErrorDocument	  500 /adm/errorhandler
                    145: </LocationMatch>
                    146: 
                    147: # -------------------------------------------------------------- Admin Programs
                    148: 
                    149: <Location /adm/statistics>
                    150: PerlAccessHandler       Apache::lonacc
                    151: SetHandler perl-script
                    152: PerlHandler Apache::lonstatistics
                    153: ErrorDocument     403 /adm/login
                    154: ErrorDocument	  500 /adm/errorhandler
                    155: </Location>
                    156: 
                    157: <Location /adm/roles>
                    158: PerlAccessHandler       Apache::lonacc
                    159: SetHandler perl-script
                    160: PerlHandler Apache::lonroles
                    161: ErrorDocument     403 /adm/login
                    162: ErrorDocument	  500 /adm/errorhandler
                    163: </Location>
                    164: 
                    165: <Location /adm/login>
                    166: SetHandler perl-script
                    167: PerlHandler Apache::lonlogin
                    168: </Location>
                    169: 
                    170: <Location /adm/logout>
                    171: PerlAccessHandler       Apache::lonacc
                    172: SetHandler perl-script
                    173: PerlHandler Apache::lonlogout
                    174: ErrorDocument     403 /adm/login
                    175: </Location>
                    176: 
                    177: <Location /adm/authenticate>
                    178: SetHandler perl-script
                    179: PerlHandler Apache::lonauth
                    180: </Location>
                    181: 
                    182: <Location /adm/annotations>
                    183: PerlAccessHandler       Apache::lonacc
                    184: SetHandler perl-script
                    185: PerlHandler Apache::admannotations
                    186: ErrorDocument     403 /adm/login
                    187: ErrorDocument	  500 /adm/errorhandler
                    188: </Location>
                    189: 
                    190: <Location /adm/bookmarks>
                    191: PerlAccessHandler       Apache::lonacc
                    192: SetHandler perl-script
                    193: PerlHandler Apache::admbookmarks
                    194: ErrorDocument     403 /adm/login
                    195: ErrorDocument	  500 /adm/errorhandler
                    196: </Location>
                    197: 
                    198: <Location /adm/flip>
                    199: PerlAccessHandler       Apache::lonacc
                    200: SetHandler perl-script
                    201: PerlHandler Apache::lonpageflip
                    202: ErrorDocument     406 /adm/roles
                    203: ErrorDocument     403 /adm/login
                    204: ErrorDocument	  500 /adm/errorhandler
                    205: </Location>
                    206: 
                    207: <Location /adm/ambiguous>
                    208: PerlAccessHandler       Apache::lonacc
                    209: SetHandler perl-script
                    210: PerlHandler Apache::lonambiguous
                    211: ErrorDocument     403 /adm/login
                    212: ErrorDocument	  500 /adm/errorhandler
                    213: </Location>
                    214: 
                    215: <Location /adm/email>
                    216: PerlAccessHandler       Apache::lonacc
                    217: SetHandler perl-script
                    218: PerlHandler Apache::lonmsg
                    219: ErrorDocument     403 /adm/login
                    220: ErrorDocument	  500 /adm/errorhandler
                    221: </Location>
                    222: 
                    223: <Location /adm/parmset>
                    224: PerlAccessHandler       Apache::lonacc
                    225: SetHandler perl-script
                    226: PerlHandler Apache::lonparmset
                    227: ErrorDocument     403 /adm/login
                    228: ErrorDocument     406 /adm/roles
                    229: ErrorDocument	  500 /adm/errorhandler
                    230: </Location>
                    231: 
                    232: <Location /adm/grades>
                    233: PerlAccessHandler       Apache::lonacc
                    234: SetHandler perl-script
                    235: PerlHandler Apache::grades
                    236: ErrorDocument     403 /adm/login
                    237: ErrorDocument     406 /adm/roles
                    238: ErrorDocument	  500 /adm/errorhandler
                    239: </Location>
                    240: 
                    241: <Location /adm/createcourse>
                    242: PerlAccessHandler       Apache::lonacc
                    243: SetHandler perl-script
                    244: PerlHandler Apache::loncreatecourse
                    245: ErrorDocument     403 /adm/login
                    246: ErrorDocument     406 /adm/roles
                    247: ErrorDocument	  500 /adm/errorhandler
                    248: </Location>
                    249: 
                    250: <Location /adm/createuser>
                    251: PerlAccessHandler       Apache::lonacc
                    252: SetHandler perl-script
                    253: PerlHandler Apache::loncreateuser
                    254: ErrorDocument     403 /adm/login
                    255: ErrorDocument     406 /adm/roles
                    256: ErrorDocument	  500 /adm/errorhandler
                    257: </Location>
                    258: 
                    259: <Location /adm/publish>
                    260: PerlAccessHandler       Apache::lonacc
                    261: SetHandler perl-script
                    262: PerlHandler Apache::lonpublisher
                    263: ErrorDocument     403 /adm/login
                    264: ErrorDocument     404 /adm/notfound.html
                    265: ErrorDocument     406 /adm/unauthorized.html
                    266: ErrorDocument	  500 /adm/errorhandler
                    267: </Location>
                    268: 
                    269: <LocationMatch "^/\~.*/$">
                    270: PerlAccessHandler       Apache::loncacc
                    271: SetHandler perl-script
                    272: PerlHandler Apache::lonpubdir
                    273: ErrorDocument     403 /adm/login
                    274: ErrorDocument     404 /adm/notfound.html
                    275: ErrorDocument     406 /adm/unauthorized.html
                    276: ErrorDocument	  500 /adm/errorhandler
                    277: </LocationMatch>
                    278: 
                    279: <Location /adm/pubdir>
                    280: PerlAccessHandler       Apache::lonacc
                    281: SetHandler perl-script
                    282: PerlHandler Apache::lonpubdir
                    283: ErrorDocument     403 /adm/login
                    284: ErrorDocument     404 /adm/notfound.html
                    285: ErrorDocument     406 /adm/unauthorized.html
                    286: ErrorDocument	  500 /adm/errorhandler
                    287: </Location>
                    288: 
                    289: <Location /adm/retrieve>
                    290: PerlAccessHandler       Apache::lonacc
                    291: SetHandler perl-script
                    292: PerlHandler Apache::lonretrieve
                    293: ErrorDocument     403 /adm/login
                    294: ErrorDocument     404 /adm/notfound.html
                    295: ErrorDocument     406 /adm/unauthorized.html
                    296: ErrorDocument	  500 /adm/errorhandler
                    297: </Location>
                    298: 
                    299: <Location /adm/cfile>
                    300: PerlAccessHandler       Apache::lonacc
                    301: SetHandler perl-script
                    302: PerlHandler Apache::loncfile
                    303: ErrorDocument     403 /adm/login
                    304: ErrorDocument     404 /adm/notfound.html
                    305: ErrorDocument     406 /adm/unauthorized.html
                    306: ErrorDocument	  500 /adm/errorhandler
                    307: </Location>
                    308: 
                    309: <Location /adm/diff>
                    310: PerlAccessHandler       Apache::lonacc
                    311: SetHandler perl-script
                    312: PerlHandler Apache::londiff
                    313: ErrorDocument     403 /adm/login
                    314: ErrorDocument     404 /adm/notfound.html
                    315: ErrorDocument     406 /adm/unauthorized.html
                    316: ErrorDocument	  500 /adm/errorhandler
                    317: </Location>
                    318: 
                    319: <Location /adm/upload>
                    320: PerlAccessHandler       Apache::lonacc
                    321: SetHandler perl-script
                    322: PerlHandler Apache::lonupload
                    323: ErrorDocument     403 /adm/login
                    324: ErrorDocument     404 /adm/notfound.html
                    325: ErrorDocument     406 /adm/unauthorized.html
                    326: ErrorDocument	  500 /adm/errorhandler
                    327: </Location>
                    328: 
                    329: <Location /adm/assesscalc>
                    330: PerlAccessHandler       Apache::lonacc
                    331: SetHandler perl-script
                    332: PerlHandler Apache::lonspreadsheet
                    333: ErrorDocument     403 /adm/login
                    334: ErrorDocument     406 /adm/roles
                    335: ErrorDocument	  500 /adm/errorhandler
                    336: </Location>
                    337: 
                    338: <Location /adm/studentcalc>
                    339: PerlAccessHandler       Apache::lonacc
                    340: SetHandler perl-script
                    341: PerlHandler Apache::lonspreadsheet
                    342: ErrorDocument     403 /adm/login
                    343: ErrorDocument     406 /adm/roles
                    344: ErrorDocument	  500 /adm/errorhandler
                    345: </Location>
                    346: 
                    347: <Location /adm/classcalc>
                    348: PerlAccessHandler       Apache::lonacc
                    349: SetHandler perl-script
                    350: PerlHandler Apache::lonspreadsheet
                    351: ErrorDocument     403 /adm/login
                    352: ErrorDocument     406 /adm/roles
                    353: ErrorDocument	  500 /adm/errorhandler
                    354: </Location>
                    355: 
                    356: <Location /adm/chart>
                    357: PerlAccessHandler       Apache::lonacc
                    358: SetHandler perl-script
                    359: PerlHandler Apache::lonchart
                    360: ErrorDocument     403 /adm/login
                    361: ErrorDocument     406 /adm/roles
                    362: ErrorDocument	  500 /adm/errorhandler
                    363: </Location>
                    364: 
                    365: <Location /adm/dropadd>
                    366: PerlAccessHandler       Apache::lonacc
                    367: SetHandler perl-script
                    368: PerlHandler Apache::londropadd
                    369: ErrorDocument     403 /adm/login
                    370: ErrorDocument     406 /adm/roles
                    371: ErrorDocument	  500 /adm/errorhandler
                    372: </Location>
                    373: 
                    374: <Location /adm/printout>
                    375: PerlAccessHandler       Apache::lonacc
                    376: SetHandler perl-script
                    377: PerlHandler Apache::lonprintout
                    378: ErrorDocument     403 /adm/login
                    379: ErrorDocument	  500 /adm/errorhandler
                    380: </Location>
                    381: 
                    382: <Location /adm/feedback>
                    383: PerlAccessHandler       Apache::lonacc
                    384: SetHandler perl-script
                    385: PerlHandler Apache::lonfeedback
                    386: ErrorDocument     403 /adm/login
                    387: ErrorDocument	  500 /adm/errorhandler
                    388: </Location>
                    389: 
                    390: <Location /adm/evaluate>
                    391: PerlAccessHandler       Apache::lonacc
                    392: SetHandler perl-script
                    393: PerlHandler Apache::lonevaluate
                    394: ErrorDocument     403 /adm/login
                    395: ErrorDocument	  500 /adm/errorhandler
                    396: </Location>
                    397: 
                    398: <Location /adm/preferences>
                    399: PerlAccessHandler       Apache::lonacc
                    400: SetHandler perl-script
                    401: PerlHandler Apache::lonpreferences
                    402: ErrorDocument     403 /adm/login
                    403: ErrorDocument	  500 /adm/errorhandler
                    404: </Location>
                    405: 
                    406: <Location /adm/assignments>
                    407: PerlAccessHandler       Apache::lonacc
                    408: SetHandler perl-script
                    409: PerlHandler Apache::lonassignments
                    410: ErrorDocument     403 /adm/login
                    411: ErrorDocument     406 /adm/roles
                    412: ErrorDocument	  500 /adm/errorhandler
                    413: </Location>
                    414: 
                    415: <Location /adm/communicate>
                    416: PerlAccessHandler       Apache::lonacc
                    417: SetHandler perl-script
                    418: PerlHandler Apache::loncommunicate
                    419: ErrorDocument     403 /adm/login
                    420: ErrorDocument	  500 /adm/errorhandler
                    421: </Location>
                    422: 
                    423: <Location /adm/searchcat>
                    424: PerlAccessHandler       Apache::lonacc
                    425: SetHandler perl-script
                    426: PerlHandler Apache::lonsearchcat
                    427: ErrorDocument     403 /adm/login
                    428: ErrorDocument	  500 /adm/errorhandler
                    429: </Location>
                    430: 
                    431: <Location /adm/navmaps>
                    432: PerlAccessHandler       Apache::lonacc
                    433: SetHandler perl-script
                    434: PerlHandler Apache::lonnavmaps
                    435: ErrorDocument     403 /adm/login
                    436: ErrorDocument     406 /adm/roles
                    437: ErrorDocument	  500 /adm/errorhandler
                    438: </Location>
                    439: 
                    440: <Location /adm/groupsort>
                    441: PerlAccessHandler	Apache::lonacc
                    442: SetHandler perl-script
                    443: PerlHandler Apache::groupsort
                    444: ErrorDocument     403 /adm/login
                    445: ErrorDocument	  500 /adm/errorhandler
                    446: </Location>
                    447: 
                    448: <Location /adm/errorhandler>
                    449: SetHandler perl-script
                    450: PerlHandler Apache::lonerrorhandler
                    451: </Location>
                    452: 
                    453: # ------------------------------------------------- Backdoor Adm Tests/Programs
                    454: 
                    455: <Location /cgi-bin/loncron.pl>
                    456: AuthName "LON-CAPA Network Administration"
                    457: AuthType Basic
                    458: AuthUserFile /home/httpd/lonTabs/htpasswd
                    459: require user lonadm
                    460: </Location>
                    461: 
                    462: <Location /cgi-bin/lonversions.pl>
                    463: AuthName "LON-CAPA Network Administration"
                    464: AuthType Basic
                    465: AuthUserFile /home/httpd/lonTabs/htpasswd
                    466: require user lonadm
                    467: </Location>
                    468: 
                    469: <Location /cgi-bin/clusterstatus.pl>
                    470: AuthName "LON-CAPA Network Administration"
                    471: AuthType Basic
                    472: AuthUserFile /home/httpd/lonTabs/htpasswd
                    473: require user lonadm
                    474: </Location>
                    475: 
                    476: <Location /cgi-bin/metadata_keywords.pl>
                    477: AuthName "LON-CAPA Network Administration"
                    478: AuthType Basic
                    479: AuthUserFile /home/httpd/lonTabs/htpasswd
                    480: require user lonadm
                    481: </Location>
                    482: 
                    483: <Location /adm/test>
                    484: AuthName "LON-CAPA Network Administration"
                    485: AuthType Basic
                    486: AuthUserFile /home/httpd/lonTabs/htpasswd
                    487: require user lonadm
                    488: SetHandler perl-script
                    489: PerlAccessHandler Apache::lonacc
                    490: PerlHandler Apache::lontest
                    491: </Location>
                    492: 
                    493: # ------------------------------------------------------- Shutting down a child
                    494: 
                    495: PerlChildExitHandler Apache::lonnet::goodbye
                    496: 
                    497: #
                    498: # LON-CAPA Section (extensions to access.conf permission configuration)
                    499: #
                    500: # =========================================================== Directory Options
                    501: 
                    502: # Start out with "no"
                    503: 
                    504: <Directory />
                    505: Options None
                    506: AllowOverride None
                    507: </Directory>
                    508: 
                    509: # Yes to symbolic links and server-side includes
                    510: 
                    511: <Directory /home/httpd/html>
                    512: Options Includes FollowSymLinks
                    513: AllowOverride None
                    514: order allow,deny
                    515: allow from all
                    516: </Directory>
                    517: 
                    518: # If it is in cgi-bin, then it can be executed as a CGI script.
                    519: 
                    520: <Directory /home/httpd/cgi-bin>
                    521: AllowOverride None
                    522: Options ExecCGI
                    523: </Directory>
                    524: 
                    525: # ============================================================= Access Handlers
                    526: 
                    527: # ------------------------------------------------- Allow server-status reports
                    528: <Location /server-status>
                    529: SetHandler server-status
                    530: AuthName "LON-CAPA Network Administration"
                    531: AuthType Basic
                    532: AuthUserFile /home/httpd/lonTabs/htpasswd
                    533: require user lonadm
                    534: </Location>
                    535: 
                    536: # ------------------------ Allow LON-CAPA "low-level" connection status reports
                    537: <Location /lon-status>
                    538: AuthName "LON-CAPA Network Administration"
                    539: AuthType Basic
                    540: AuthUserFile /home/httpd/lonTabs/htpasswd
                    541: require user lonadm
                    542: </Location>
                    543: 
                    544: # ------------------- Allow access to local system documentation from localhost
                    545: Alias /doc /usr/doc
                    546: <Directory /usr/doc>
                    547: order deny,allow
                    548: deny from all
                    549: allow from localhost
                    550: Options Indexes FollowSymLinks
                    551: </Directory>
                    552: 
                    553: # ******** THESE "SHOULD" NEVER BE ALTERED BY THE USER ************************
                    554: # ====================================== Internal Settings / Perl Configuration
                    555: 
                    556: PerlSetVar       lonIDsDir    /home/httpd/lonIDs
                    557: PerlSetVar       lonTabDir    /home/httpd/lonTabs
                    558: PerlSetVar       lonUsersDir  /home/httpd/lonUsers
                    559: PerlSetVar       lonIconsURL  /adm/lonIcons
                    560: PerlSetVar       londPort     5663
                    561: PerlSetVar       lonSysEMail  korte@lite.msu.edu
                    562: PerlSetVar       lonDaemons   /home/httpd/perl
                    563: PerlSetVar       lonSockDir   /home/httpd/sockets
                    564: PerlSetVar       lonDocRoot   /home/httpd/html
                    565: PerlSetVar       lonIncludes  /home/httpd/html/res/adm/includes
                    566: PerlSetVar       lonBrowsDet  netscape:mozilla:msie:mozilla\/(\d+\.\d+)\s:9999&explorer:msie:netscape:msie\s(\d+\.\d+)\;:9999&mozilla:mozilla\/[5-9]:msie:mozilla\/(\d+\.\d+)\s:9999&amaya:amaya:mozilla:V(\d+\.\d+)\s:1
1.2     ! harris41  567: 
        !           568: # -----------------------------------------------------------------------------
        !           569: # NOTE: lonSqlAccess key is the password for the MySQL user
        !           570: # www@localhost.  This value must always be "localhostkey".
        !           571: # The only security risk occurs when somebody logs in as 'www' on your system
        !           572: # (in which case you have much bigger problems than whether or not they
        !           573: # can access the non-authoritative loncapa database on your machine).
        !           574: 
        !           575: PerlSetVar       lonSqlAccess   localhostkey
        !           576: 
        !           577: # -----------------------------------------------------------------------------
        !           578: 
        !           579: 
        !           580: # ================================================== Initiate mod_perl starting
        !           581: 
        !           582: Include conf/loncapa.conf
1.1       harris41  583: 
                    584: # ================================================== Initiate mod_perl starting
                    585: 
                    586: PerlRequire      conf/startup.pl
                    587: PerlFreshRestart On

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