File:  [LON-CAPA] / loncom / Attic / srm.conf
Revision 1.14: download - view: text, annotated - select for diffs
Tue May 15 12:35:07 2001 UTC (22 years, 11 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
- lonindexer now is allowed to run on /res/
- lontex now runs when wandering the contruction space

    1: ##
    2: ## srm.conf -- Apache HTTP server configuration file
    3: ##
    4: 
    5: # With this document, you define the name space that users see of your http
    6: # server.  This file also defines server settings which affect how requests are
    7: # serviced, and how results should be formatted. 
    8: 
    9: # See the tutorials at http://www.apache.org/ for
   10: # more information.
   11: 
   12: # Originally by Rob McCool; Adapted for Apache
   13: 
   14: 
   15: # DocumentRoot: The directory out of which you will serve your
   16: # documents. By default, all requests are taken from this directory, but
   17: # symbolic links and aliases may be used to point to other locations.
   18: 
   19: DocumentRoot /home/httpd/html
   20: 
   21: # UserDir: The name of the directory which is appended onto a user's home
   22: # directory if a ~user request is recieved.
   23: 
   24: UserDir public_html
   25: 
   26: # DirectoryIndex: Name of the file or files to use as a pre-written HTML
   27: # directory index.  Separate multiple entries with spaces.
   28: 
   29: DirectoryIndex index.html index.shtml index.cgi
   30: 
   31: # FancyIndexing is whether you want fancy directory indexing or standard
   32: 
   33: FancyIndexing on
   34: 
   35: # AddIcon tells the server which icon to show for different files or filename
   36: # extensions
   37: 
   38: AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
   39: 
   40: AddIconByType (TXT,/icons/text.gif) text/*
   41: AddIconByType (IMG,/icons/image2.gif) image/*
   42: AddIconByType (SND,/icons/sound2.gif) audio/*
   43: AddIconByType (VID,/icons/movie.gif) video/*
   44: 
   45: AddIcon /icons/binary.gif .bin .exe
   46: AddIcon /icons/binhex.gif .hqx
   47: AddIcon /icons/tar.gif .tar
   48: AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
   49: AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
   50: AddIcon /icons/a.gif .ps .ai .eps
   51: AddIcon /icons/layout.gif .html .shtml .htm .pdf
   52: AddIcon /icons/text.gif .txt
   53: AddIcon /icons/c.gif .c
   54: AddIcon /icons/p.gif .pl .py
   55: AddIcon /icons/f.gif .for
   56: AddIcon /icons/dvi.gif .dvi
   57: AddIcon /icons/uuencoded.gif .uu
   58: AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
   59: AddIcon /icons/tex.gif .tex
   60: AddIcon /icons/bomb.gif core
   61: 
   62: AddIcon /icons/back.gif ..
   63: AddIcon /icons/hand.right.gif README
   64: AddIcon /icons/folder.gif ^^DIRECTORY^^
   65: AddIcon /icons/blank.gif ^^BLANKICON^^
   66: 
   67: # DefaultIcon is which icon to show for files which do not have an icon
   68: # explicitly set.
   69: 
   70: DefaultIcon /icons/unknown.gif
   71: 
   72: # AddDescription allows you to place a short description after a file in
   73: # server-generated indexes.
   74: # Format: AddDescription "description" filename
   75: 
   76: # ReadmeName is the name of the README file the server will look for by
   77: # default. Format: ReadmeName name
   78: #
   79: # The server will first look for name.html, include it if found, and it will
   80: # then look for name and include it as plaintext if found.
   81: #
   82: # HeaderName is the name of a file which should be prepended to
   83: # directory indexes. 
   84: 
   85: ReadmeName README
   86: HeaderName HEADER
   87: 
   88: # IndexIgnore is a set of filenames which directory indexing should ignore
   89: # Format: IndexIgnore name1 name2...
   90: 
   91: IndexIgnore .??* *~ *# HEADER* README* RCS
   92: 
   93: # AccessFileName: The name of the file to look for in each directory
   94: # for access control information.
   95: 
   96: AccessFileName .htaccess
   97: 
   98: # TypesConfig describes where the mime.types file (or equivalent) is
   99: # to be found.
  100: 
  101: TypesConfig /etc/mime.types
  102: 
  103: # DefaultType is the default MIME type for documents which the server
  104: # cannot find the type of from filename extensions.
  105: 
  106: DefaultType text/plain
  107: 
  108: # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  109: # information on the fly. Note: Not all browsers support this.
  110: 
  111: AddEncoding x-compress Z
  112: AddEncoding x-gzip gz
  113: 
  114: # AddLanguage allows you to specify the language of a document. You can
  115: # then use content negotiation to give a browser a file in a language
  116: # it can understand.  Note that the suffix does not have to be the same
  117: # as the language keyword --- those with documents in Polish (whose
  118: # net-standard language code is pl) may wish to use "AddLanguage pl .po" 
  119: # to avoid the ambiguity with the common suffix for perl scripts.
  120: 
  121: AddLanguage en .en
  122: AddLanguage fr .fr
  123: AddLanguage de .de
  124: AddLanguage da .da
  125: AddLanguage el .el
  126: AddLanguage it .it
  127: 
  128: # LanguagePriority allows you to give precedence to some languages
  129: # in case of a tie during content negotiation.
  130: # Just list the languages in decreasing order of preference.
  131: 
  132: LanguagePriority en fr de
  133: 
  134: # Redirect allows you to tell clients about documents which used to exist in
  135: # your server's namespace, but do not anymore. This allows you to tell the
  136: # clients where to look for the relocated document.
  137: # Format: Redirect fakename url
  138: 
  139: 
  140: # Aliases: Add here as many aliases as you need (with no limit). The format is 
  141: # Alias fakename realname
  142: 
  143: # Note that if you include a trailing / on fakename then the server will
  144: # require it to be present in the URL.  So "/icons" isn't aliased in this
  145: # example.
  146: 
  147: Alias /icons/ /home/httpd/icons/
  148: 
  149: # ScriptAlias: This controls which directories contain server scripts.
  150: # Format: ScriptAlias fakename realname
  151: 
  152: ScriptAlias /cgi-bin/ /home/httpd/cgi-bin/
  153: 
  154: # If you want to use server side includes, or CGI outside
  155: # ScriptAliased directories, uncomment the following lines.
  156: 
  157: # AddType allows you to tweak mime.types without actually editing it, or to
  158: # make certain files to be certain types.
  159: # Format: AddType type/subtype ext1
  160: 
  161: # For example, the PHP3 module (not part of the Apache distribution)
  162: # will typically use:
  163: #AddType application/x-httpd-php3 .php3
  164: #AddType application/x-httpd-php3-source .phps
  165: # The following is for PHP/FI (PHP2):
  166: #AddType application/x-httpd-php .phtml
  167: 
  168: # AddHandler allows you to map certain file extensions to "handlers",
  169: # actions unrelated to filetype. These can be either built into the server
  170: # or added with the Action command (see below)
  171: # Format: AddHandler action-name ext1
  172: 
  173: # To use CGI scripts:
  174: #AddHandler cgi-script .cgi
  175: 
  176: # To use server-parsed HTML files
  177: AddType text/html .shtml
  178: AddHandler server-parsed .shtml
  179: 
  180: # Uncomment the following line to enable Apache's send-asis HTTP file
  181: # feature
  182: #AddHandler send-as-is asis
  183: 
  184: # If you wish to use server-parsed imagemap files, use
  185: AddHandler imap-file map
  186: 
  187: # To enable type maps, you might want to use
  188: #AddHandler type-map var
  189: 
  190: # To enable the perl module (if you have it installed), uncomment
  191: # the following section 
  192: #
  193: #Alias /perl/ /home/httpd/perl/
  194: #<Location /perl>
  195: #SetHandler perl-script
  196: #PerlHandler Apache::Registry
  197: #Options +ExecCGI
  198: #</Location>
  199: 
  200: # Action lets you define media types that will execute a script whenever
  201: # a matching file is called. This eliminates the need for repeated URL
  202: # pathnames for oft-used CGI file processors.
  203: # Format: Action media/type /cgi-script/location
  204: # Format: Action handler-name /cgi-script/location
  205: 
  206: # MetaDir: specifies the name of the directory in which Apache can find
  207: # meta information files. These files contain additional HTTP headers
  208: # to include when sending the document
  209: 
  210: #MetaDir .web
  211: 
  212: # MetaSuffix: specifies the file name suffix for the file containing the
  213: # meta information.
  214: 
  215: #MetaSuffix .meta
  216: 
  217: # Customizable error response (Apache style)
  218: #  these come in three flavors
  219: #
  220: #    1) plain text
  221: #ErrorDocument 500 "The server made a boo boo.
  222: #  n.b.  the (") marks it as text, it does not get output
  223: #
  224: #    2) local redirects
  225: #ErrorDocument 404 /missing.html
  226: #  to redirect to local url /missing.html
  227: #ErrorDocument 404 /cgi-bin/missing_handler.pl
  228: #  n.b. can redirect to a script or a document using server-side-includes.
  229: #
  230: #    3) external redirects
  231: #ErrorDocument 402 http://some.other_server.com/subscription_info.html
  232: #
  233: 
  234: # mod_mime_magic allows the server to use various hints from the file itself
  235: # to determine its type.
  236: #MimeMagicFile /etc/httpd/conf/magic
  237: 
  238: # The following directives disable keepalives and HTTP header flushes.
  239: # The first directive disables it for Netscape 2.x and browsers which
  240: # spoof it. There are known problems with these.
  241: # The second directive is for Microsoft Internet Explorer 4.0b2
  242: # which has a broken HTTP/1.1 implementation and does not properly
  243: # support keepalive when it is used on 301 or 302 (redirect) responses.
  244: 
  245: BrowserMatch "Mozilla/2" nokeepalive
  246: BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  247: 
  248: # The following directive disables HTTP/1.1 responses to browsers which
  249: # are in violation of the HTTP/1.0 spec by not being able to grok a
  250: # basic 1.1 response.
  251: 
  252: BrowserMatch "RealPlayer 4\.0" force-response-1.0
  253: BrowserMatch "Java/1\.0" force-response-1.0
  254: BrowserMatch "JDK/1\.0" force-response-1.0
  255: 
  256: #
  257: # LON-CAPA Section
  258: #
  259: # ================================================================= Directories
  260: 
  261: # ------------------------------------------------------------- Access Handlers
  262: 
  263: <LocationMatch "^/res.*">
  264: PerlAccessHandler       Apache::lonacc
  265: PerlHeaderParserHandler Apache::lonrep
  266: ErrorDocument     403 /adm/login
  267: ErrorDocument     404 /adm/notfound.html
  268: ErrorDocument     406 /adm/roles
  269: ErrorDocument	  500 /adm/errorhandler
  270: </LocationMatch>
  271: 
  272: <LocationMatch "^/priv.*">
  273: PerlAccessHandler Apache::loncacc
  274: SetHandler        perl-script
  275: PerlHandler       Apache::lonconstruct
  276: ErrorDocument     403 /adm/login
  277: ErrorDocument     404 /adm/notfound.html
  278: ErrorDocument     406 /adm/unauthorized.html
  279: ErrorDocument	  500 /adm/errorhandler
  280: </LocationMatch>
  281: 
  282: <LocationMatch "^/raw.*">
  283: PerlAccessHandler Apache::lonracc
  284: </LocationMatch>
  285: 
  286: <LocationMatch "^/\~.*">
  287: PerlAccessHandler Apache::loncacc
  288: ErrorDocument     403 /adm/login
  289: ErrorDocument     404 /adm/notfound.html
  290: ErrorDocument     406 /adm/unauthorized.html
  291: ErrorDocument	  500 /adm/errorhandler
  292: AllowOverride None
  293: </LocationMatch>
  294: 
  295: # ------------------------------------------------------------------------- RAT
  296: 
  297: <LocationMatch "^/\~.*\.sequence$">
  298: SetHandler perl-script
  299: PerlHandler Apache::lonratedt
  300: </LocationMatch>
  301: 
  302: <LocationMatch "^/\~.*\.page$">
  303: SetHandler perl-script
  304: PerlHandler Apache::lonratedt
  305: </LocationMatch>
  306: 
  307: <LocationMatch "^/\~.*\/ratserver$">
  308: SetHandler perl-script
  309: PerlHandler Apache::lonratsrv
  310: </LocationMatch>
  311: 
  312: <LocationMatch "^/\~.*\/ratparms$">
  313: SetHandler perl-script
  314: PerlHandler Apache::lonratparms
  315: </LocationMatch>
  316: 
  317: # --------------------------------------------- Resource Space Content Handlers
  318: 
  319: <LocationMatch "^/res.*/$">
  320: SetHandler perl-script
  321: PerlHandler Apache::lonindexer
  322: </LocationMatch>
  323: 
  324: <LocationMatch "^/(res|\~).*\.tex$">
  325: SetHandler perl-script
  326: PerlHandler Apache::lontex
  327: </LocationMatch>
  328: 
  329: <LocationMatch "^/res/.*\.page$>
  330: SetHandler perl-script
  331: PerlHandler Apache::lonpage
  332: </LocationMatch>
  333: 
  334: <LocationMatch "^/res/.*\.sequence$>
  335: SetHandler perl-script
  336: PerlHandler Apache::lonsequence
  337: </LocationMatch>
  338: 
  339: <LocationMatch "^/res/.*\.meta$>
  340: SetHandler perl-script
  341: PerlHandler Apache::lonmeta
  342: </LocationMatch>
  343: 
  344: <LocationMatch "^/(res|\~).*\.(xml|html|htm|xhtml|xhtm)$">
  345: SetHandler perl-script
  346: PerlHandler Apache::lonxml
  347: </LocationMatch>
  348: 
  349: <LocationMatch "^/(res|\~).*\.(problem|exam|quiz|assess|survey|form)$">
  350: SetHandler perl-script
  351: PerlHandler Apache::lonhomework
  352: </LocationMatch>
  353: 
  354: # -------------------------------------------------------------- Admin Programs
  355: 
  356: <Location /adm/roles>
  357: PerlAccessHandler       Apache::lonacc
  358: SetHandler perl-script
  359: PerlHandler Apache::lonroles
  360: ErrorDocument     403 /adm/login
  361: ErrorDocument	  500 /adm/errorhandler
  362: </Location>
  363: 
  364: <Location /adm/login>
  365: SetHandler perl-script
  366: PerlHandler Apache::lonlogin
  367: </Location>
  368: 
  369: <Location /adm/logout>
  370: PerlAccessHandler       Apache::lonacc
  371: SetHandler perl-script
  372: PerlHandler Apache::lonlogout
  373: ErrorDocument     403 /adm/login
  374: </Location>
  375: 
  376: <Location /adm/authenticate>
  377: SetHandler perl-script
  378: PerlHandler Apache::lonauth
  379: </Location>
  380: 
  381: <Location /adm/annotations>
  382: PerlAccessHandler       Apache::lonacc
  383: SetHandler perl-script
  384: PerlHandler Apache::admannotations
  385: ErrorDocument     403 /adm/login
  386: ErrorDocument	  500 /adm/errorhandler
  387: </Location>
  388: 
  389: <Location /adm/bookmarks>
  390: PerlAccessHandler       Apache::lonacc
  391: SetHandler perl-script
  392: PerlHandler Apache::admbookmarks
  393: ErrorDocument     403 /adm/login
  394: ErrorDocument	  500 /adm/errorhandler
  395: </Location>
  396: 
  397: <Location /adm/flip>
  398: PerlAccessHandler       Apache::lonacc
  399: SetHandler perl-script
  400: PerlHandler Apache::lonpageflip
  401: ErrorDocument     406 /adm/roles
  402: ErrorDocument     403 /adm/login
  403: ErrorDocument	  500 /adm/errorhandler
  404: </Location>
  405: 
  406: <Location /adm/ambiguous>
  407: PerlAccessHandler       Apache::lonacc
  408: SetHandler perl-script
  409: PerlHandler Apache::lonambiguous
  410: ErrorDocument     403 /adm/login
  411: ErrorDocument	  500 /adm/errorhandler
  412: </Location>
  413: 
  414: <Location /adm/email>
  415: PerlAccessHandler       Apache::lonacc
  416: SetHandler perl-script
  417: PerlHandler Apache::lonmsg
  418: ErrorDocument     403 /adm/login
  419: ErrorDocument	  500 /adm/errorhandler
  420: </Location>
  421: 
  422: <Location /adm/parmset>
  423: PerlAccessHandler       Apache::lonacc
  424: SetHandler perl-script
  425: PerlHandler Apache::lonparmset
  426: ErrorDocument     403 /adm/login
  427: ErrorDocument     406 /adm/roles
  428: ErrorDocument	  500 /adm/errorhandler
  429: </Location>
  430: 
  431: <Location /adm/grades>
  432: PerlAccessHandler       Apache::lonacc
  433: SetHandler perl-script
  434: PerlHandler Apache::grades
  435: ErrorDocument     403 /adm/login
  436: ErrorDocument     406 /adm/roles
  437: ErrorDocument	  500 /adm/errorhandler
  438: </Location>
  439: 
  440: <Location /adm/createcourse>
  441: PerlAccessHandler       Apache::lonacc
  442: SetHandler perl-script
  443: PerlHandler Apache::loncreatecourse
  444: ErrorDocument     403 /adm/login
  445: ErrorDocument     406 /adm/roles
  446: ErrorDocument	  500 /adm/errorhandler
  447: </Location>
  448: 
  449: <Location /adm/createuser>
  450: PerlAccessHandler       Apache::lonacc
  451: SetHandler perl-script
  452: PerlHandler Apache::loncreateuser
  453: ErrorDocument     403 /adm/login
  454: ErrorDocument     406 /adm/roles
  455: ErrorDocument	  500 /adm/errorhandler
  456: </Location>
  457: 
  458: <Location /adm/publish>
  459: PerlAccessHandler       Apache::lonacc
  460: SetHandler perl-script
  461: PerlHandler Apache::lonpublisher
  462: ErrorDocument     403 /adm/login
  463: ErrorDocument     404 /adm/notfound.html
  464: ErrorDocument     406 /adm/unauthorized.html
  465: ErrorDocument	  500 /adm/errorhandler
  466: </Location>
  467: 
  468: <LocationMatch "^(/\~.*/|/adm/pubdir)$">
  469: PerlAccessHandler       Apache::lonacc
  470: SetHandler perl-script
  471: PerlHandler Apache::lonpubdir
  472: ErrorDocument     403 /adm/login
  473: ErrorDocument     404 /adm/notfound.html
  474: ErrorDocument     406 /adm/unauthorized.html
  475: ErrorDocument	  500 /adm/errorhandler
  476: </LocationMatch>
  477: 
  478: <Location /adm/retrieve>
  479: PerlAccessHandler       Apache::lonacc
  480: SetHandler perl-script
  481: PerlHandler Apache::lonretrieve
  482: ErrorDocument     403 /adm/login
  483: ErrorDocument     404 /adm/notfound.html
  484: ErrorDocument     406 /adm/unauthorized.html
  485: ErrorDocument	  500 /adm/errorhandler
  486: </Location>
  487: 
  488: <Location /adm/diff>
  489: PerlAccessHandler       Apache::lonacc
  490: SetHandler perl-script
  491: PerlHandler Apache::londiff
  492: ErrorDocument     403 /adm/login
  493: ErrorDocument     404 /adm/notfound.html
  494: ErrorDocument     406 /adm/unauthorized.html
  495: ErrorDocument	  500 /adm/errorhandler
  496: </Location>
  497: 
  498: <Location /adm/upload>
  499: PerlAccessHandler       Apache::lonacc
  500: SetHandler perl-script
  501: PerlHandler Apache::lonupload
  502: ErrorDocument     403 /adm/login
  503: ErrorDocument     404 /adm/notfound.html
  504: ErrorDocument     406 /adm/unauthorized.html
  505: ErrorDocument	  500 /adm/errorhandler
  506: </Location>
  507: 
  508: <Location /adm/assesscalc>
  509: PerlAccessHandler       Apache::lonacc
  510: SetHandler perl-script
  511: PerlHandler Apache::lonspreadsheet
  512: ErrorDocument     403 /adm/login
  513: ErrorDocument     406 /adm/roles
  514: ErrorDocument	  500 /adm/errorhandler
  515: </Location>
  516: 
  517: <Location /adm/studentcalc>
  518: PerlAccessHandler       Apache::lonacc
  519: SetHandler perl-script
  520: PerlHandler Apache::lonspreadsheet
  521: ErrorDocument     403 /adm/login
  522: ErrorDocument     406 /adm/roles
  523: ErrorDocument	  500 /adm/errorhandler
  524: </Location>
  525: 
  526: <Location /adm/classcalc>
  527: PerlAccessHandler       Apache::lonacc
  528: SetHandler perl-script
  529: PerlHandler Apache::lonspreadsheet
  530: ErrorDocument     403 /adm/login
  531: ErrorDocument     406 /adm/roles
  532: ErrorDocument	  500 /adm/errorhandler
  533: </Location>
  534: 
  535: <Location /adm/chart>
  536: PerlAccessHandler       Apache::lonacc
  537: SetHandler perl-script
  538: PerlHandler Apache::lonchart
  539: ErrorDocument     403 /adm/login
  540: ErrorDocument     406 /adm/roles
  541: ErrorDocument	  500 /adm/errorhandler
  542: </Location>
  543: 
  544: <Location /adm/dropadd>
  545: PerlAccessHandler       Apache::lonacc
  546: SetHandler perl-script
  547: PerlHandler Apache::londropadd
  548: ErrorDocument     403 /adm/login
  549: ErrorDocument     406 /adm/roles
  550: ErrorDocument	  500 /adm/errorhandler
  551: </Location>
  552: 
  553: <Location /adm/mydesk>
  554: PerlAccessHandler       Apache::lonacc
  555: SetHandler perl-script
  556: PerlHandler Apache::lonmydesk
  557: ErrorDocument     403 /adm/login
  558: ErrorDocument	  500 /adm/errorhandler
  559: </Location>
  560: 
  561: <Location /adm/printout>
  562: PerlAccessHandler       Apache::lonacc
  563: SetHandler perl-script
  564: PerlHandler Apache::lonprintout
  565: ErrorDocument     403 /adm/login
  566: ErrorDocument	  500 /adm/errorhandler
  567: </Location>
  568: 
  569: <Location /adm/feedback>
  570: PerlAccessHandler       Apache::lonacc
  571: SetHandler perl-script
  572: PerlHandler Apache::lonfeedback
  573: ErrorDocument     403 /adm/login
  574: ErrorDocument	  500 /adm/errorhandler
  575: </Location>
  576: 
  577: <Location /adm/evaluate>
  578: PerlAccessHandler       Apache::lonacc
  579: SetHandler perl-script
  580: PerlHandler Apache::lonevaluate
  581: ErrorDocument     403 /adm/login
  582: ErrorDocument	  500 /adm/errorhandler
  583: </Location>
  584: 
  585: <Location /adm/preferences>
  586: PerlAccessHandler       Apache::lonacc
  587: SetHandler perl-script
  588: PerlHandler Apache::lonpreferences
  589: ErrorDocument     403 /adm/login
  590: ErrorDocument	  500 /adm/errorhandler
  591: </Location>
  592: 
  593: <Location /adm/assignments>
  594: PerlAccessHandler       Apache::lonacc
  595: SetHandler perl-script
  596: PerlHandler Apache::lonassignments
  597: ErrorDocument     403 /adm/login
  598: ErrorDocument     406 /adm/roles
  599: ErrorDocument	  500 /adm/errorhandler
  600: </Location>
  601: 
  602: <Location /adm/communicate>
  603: PerlAccessHandler       Apache::lonacc
  604: SetHandler perl-script
  605: PerlHandler Apache::loncommunicate
  606: ErrorDocument     403 /adm/login
  607: ErrorDocument	  500 /adm/errorhandler
  608: </Location>
  609: 
  610: <Location /adm/searchcat>
  611: PerlAccessHandler       Apache::lonacc
  612: SetHandler perl-script
  613: PerlHandler Apache::lonsearchcat
  614: ErrorDocument     403 /adm/login
  615: ErrorDocument	  500 /adm/errorhandler
  616: </Location>
  617: 
  618: <Location /adm/navmaps>
  619: PerlAccessHandler       Apache::lonacc
  620: SetHandler perl-script
  621: PerlHandler Apache::lonnavmaps
  622: ErrorDocument     403 /adm/login
  623: ErrorDocument     406 /adm/roles
  624: ErrorDocument	  500 /adm/errorhandler
  625: </Location>
  626: 
  627: <Location /adm/errorhandler>
  628: SetHandler perl-script
  629: PerlHandler Apache::lonerrorhandler
  630: </Location>
  631: 
  632: # --------------------------------------------------------------- Backdoor Test
  633: 
  634: <Location /adm/test>
  635: AuthName "LON Test Handler"
  636: AuthType Basic
  637: AuthUserFile /home/httpd/lonTabs/htpasswd
  638: require user lonadm
  639: SetHandler perl-script
  640: PerlAccessHandler Apache::lonacc
  641: PerlHandler Apache::lontest
  642: </Location>

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