17. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 7/6/2017 8:22:20 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

17.1 Files compared

# Location File Last Modified
1 OSCIF_CTT_v4_build 1.zip\apache_extensions\apache_configs\httpd\conf httpd.conf-TEST Wed May 31 03:59:20 2017 UTC
2 OSCIF_CTT_v4_build 1.zip\apache_extensions\apache_configs\httpd\conf httpd.conf-TEST Mon Jul 3 20:14:19 2017 UTC

17.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 5 2146
Changed 4 10
Inserted 0 0
Removed 0 0

17.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

17.4 Active regular expressions

No regular expressions were active.

17.5 Comparison detail

  1  
  2   #
  3   # This is  the main A pache serv er configu ration fil e.  It con tains the
  4   # configur ation dire ctives tha t give the  server it s instruct ions.
  5   # See <URL :http://ht tpd.apache .org/docs/ 2.2/> for  detailed i nformation .
  6   # In parti cular, see
  7   # <URL:htt p://httpd. apache.org /docs/2.2/ mod/direct ives.html>
  8   # for a di scussion o f each con figuration  directive .
  9   #
  10   #
  11   # Do NOT s imply read  the instr uctions in  here with out unders tanding
  12   # what the y do.  The y're here  only as hi nts or rem inders.  I f you are  unsure
  13   # consult  the online  docs. You  have been  warned.
  14   #
  15   # The conf iguration  directives  are group ed into th ree basic  sections:
  16   #  1. Dire ctives tha t control  the operat ion of the  Apache se rver proce ss as a
  17   #     whol e (the 'gl obal envir onment').
  18   #  2. Dire ctives tha t define t he paramet ers of the  'main' or  'default'  server,
  19   #     whic h responds  to reques ts that ar en't handl ed by a vi rtual host .
  20   #     Thes e directiv es also pr ovide defa ult values  for the s ettings
  21   #     of a ll virtual  hosts.
  22   #  3. Sett ings for v irtual hos ts, which  allow Web  requests t o be sent  to
  23   #     diff erent IP a ddresses o r hostname s and have  them hand led by the
  24   #     same  Apache se rver proce ss.
  25   #
  26   # Configur ation and  logfile na mes: If th e filename s you spec ify for ma ny
  27   # of the s erver's co ntrol file s begin wi th "/" (or  "drive:/"  for Win32 ), the
  28   # server w ill use th at explici t path.  I f the file names do * not* begin
  29   # with "/" , the valu e of Serve rRoot is p repended - - so "logs /foo.log"
  30   # with Ser verRoot se t to "/etc /httpd" wi ll be inte rpreted by  the
  31   # server a s "/etc/ht tpd/logs/f oo.log".
  32   #
  33   PassEnv CA PKIHOME
  34  
  35   ### Sectio n 1: Globa l Environm ent
  36   #
  37   # The dire ctives in  this secti on affect  the overal l operatio n of Apach e,
  38   # such as  the number  of concur rent reque sts it can  handle or  where it
  39   # can find  its confi guration f iles.
  40   #
  41  
  42   #
  43   # Don't gi ve away to o much inf ormation a bout all t he subcomp onents
  44   # we are r unning.  C omment out  this line  if you do n't mind r emote site s
  45   # finding  out what m ajor optio nal module s you are  running
  46   ServerToke ns OS
  47  
  48   #
  49   # ServerRo ot: The to p of the d irectory t ree under  which the  server's
  50   # configur ation, err or, and lo g files ar e kept.
  51   #
  52   # NOTE!  I f you inte nd to plac e this on  an NFS (or  otherwise  network)
  53   # mounted  filesystem  then plea se read th e LockFile  documenta tion
  54   # (availab le at <URL :http://ht tpd.apache .org/docs/ 2.2/mod/mp m_common.h tml#lockfi le>);
  55   # you will  save your self a lot  of troubl e.
  56   #
  57   # Do NOT a dd a slash  at the en d of the d irectory p ath.
  58   #
  59   ServerRoot  "/etc/htt pd"
  60  
  61   #
  62   # PidFile:  The file  in which t he server  should rec ord its pr ocess
  63   # identifi cation num ber when i t starts.   Note the  PIDFILE va riable in
  64   # /etc/sys config/htt pd must be  set appro priately i f this loc ation is
  65   # changed.
  66   #
  67   PidFile ru n/httpd.pi d
  68  
  69   #
  70   # Timeout:  The numbe r of secon ds before  receives a nd sends t ime out.
  71   #
  72   Timeout 60
  73  
  74   #
  75   # KeepAliv e: Whether  or not to  allow per sistent co nnections  (more than
  76   # one requ est per co nnection).  Set to "O ff" to dea ctivate.
  77   #
  78   KeepAlive  Off
  79  
  80   #
  81   # MaxKeepA liveReques ts: The ma ximum numb er of requ ests to al low
  82   # during a  persisten t connecti on. Set to  0 to allo w an unlim ited amoun t.
  83   # We recom mend you l eave this  number hig h, for max imum perfo rmance.
  84   #
  85   MaxKeepAli veRequests  100
  86  
  87   #
  88   # KeepAliv eTimeout:  Number of  seconds to  wait for  the next r equest fro m the
  89   # same cli ent on the  same conn ection.
  90   #
  91   KeepAliveT imeout 15
  92  
  93   ##
  94   ## Server- Pool Size  Regulation  (MPM spec ific)
  95   ##
  96  
  97   # prefork  MPM
  98   # StartSer vers: numb er of serv er process es to star t
  99   # MinSpare Servers: m inimum num ber of ser ver proces ses which  are kept s pare
  100   # MaxSpare Servers: m aximum num ber of ser ver proces ses which  are kept s pare
  101   # ServerLi mit: maxim um value f or MaxClie nts for th e lifetime  of the se rver
  102   # MaxClien ts: maximu m number o f server p rocesses a llowed to  start
  103   # MaxReque stsPerChil d: maximum  number of  requests  a server p rocess ser ves
  104   <IfModule  prefork.c>
  105   StartServe rs       8
  106   MinSpareSe rvers    5
  107   MaxSpareSe rvers   20
  108   ServerLimi t      256
  109   MaxClients        256
  110   MaxRequest sPerChild   4000
  111   </IfModule >
  112  
  113   # worker M PM
  114   # StartSer vers: init ial number  of server  processes  to start
  115   # MaxClien ts: maximu m number o f simultan eous clien t connecti ons
  116   # MinSpare Threads: m inimum num ber of wor ker thread s which ar e kept spa re
  117   # MaxSpare Threads: m aximum num ber of wor ker thread s which ar e kept spa re
  118   # ThreadsP erChild: c onstant nu mber of wo rker threa ds in each  server pr ocess
  119   # MaxReque stsPerChil d: maximum  number of  requests  a server p rocess ser ves
  120   <IfModule  worker.c>
  121   StartServe rs          4
  122   MaxClients          3 00
  123   MinSpareTh reads      25
  124   MaxSpareTh reads      75
  125   ThreadsPer Child      25
  126   MaxRequest sPerChild   0
  127   </IfModule >
  128  
  129   #
  130   # Listen:  Allows you  to bind A pache to s pecific IP  addresses  and/or
  131   # ports, i n addition  to the de fault. See  also the  <VirtualHo st>
  132   # directiv e.
  133   #
  134   # Change t his to Lis ten on spe cific IP a ddresses a s shown be low to
  135   # prevent  Apache fro m glomming  onto all  bound IP a ddresses ( 0.0.0.0)
  136   #
  137   #Listen 12 .34.56.78: 80
  138   #Listen 80
  139  
  140   #<VirtualH ost *:80>
  141   #ServerNam DNS                       
  142   #DocumentR oot /var/w ww/html
  143   #SSLProxyE ngine On
  144   #ProxyRequ ests Off
  145   #ProxyPres erveHost O n
  146   #ProxyPass           / http:// DNS                       
  147   #ProxyPass Reverse /  http:// DNS                       
  148   #</Virtual Host>
  149  
  150   Listen 80
  151   <VirtualHo st *:80>
  152   ServerName  DNS
  153   DocumentRo ot /var/ww w/html
  154   Redirect p ermanent /  https:// DNS
  155   SSLVerifyC lient none
  156   </VirtualH ost>
  157  
  158  
  159   #
  160   # Dynamic  Shared Obj ect (DSO)  Support
  161   #
  162   # To be ab le to use  the functi onality of  a module  which was  built as a  DSO you
  163   # have to  place corr esponding  `LoadModul e' lines a t this loc ation so t he
  164   # directiv es contain ed in it a re actuall y availabl e _before_  they are  used.
  165   # Statical ly compile d modules  (those lis ted by `ht tpd -l') d o not need
  166   # to be lo aded here.
  167   #
  168   # Example:
  169   # LoadModu le foo_mod ule module s/mod_foo. so
  170   LoadModule  sm_module  "/app/CA/ webagent/b in/libmod_ sm22.so"
  171   SmInitFile  "/etc/htt pd/conf/We bAgent.con f"
  172   #
  173   LoadModule  auth_basi c_module m odules/mod _auth_basi c.so
  174   LoadModule  auth_dige st_module  modules/mo d_auth_dig est.so
  175   LoadModule  authn_fil e_module m odules/mod _authn_fil e.so
  176   LoadModule  authn_ali as_module  modules/mo d_authn_al ias.so
  177   LoadModule  authn_ano n_module m odules/mod _authn_ano n.so
  178   LoadModule  authn_dbm _module mo dules/mod_ authn_dbm. so
  179   LoadModule  authn_def ault_modul e modules/ mod_authn_ default.so
  180   LoadModule  authz_hos t_module m odules/mod _authz_hos t.so
  181   LoadModule  authz_use r_module m odules/mod _authz_use r.so
  182   LoadModule  authz_own er_module  modules/mo d_authz_ow ner.so
  183   LoadModule  authz_gro upfile_mod ule module s/mod_auth z_groupfil e.so
  184   LoadModule  authz_dbm _module mo dules/mod_ authz_dbm. so
  185   LoadModule  authz_def ault_modul e modules/ mod_authz_ default.so
  186   LoadModule  ldap_modu le modules /mod_ldap. so
  187   LoadModule  authnz_ld ap_module  modules/mo d_authnz_l dap.so
  188   LoadModule  include_m odule modu les/mod_in clude.so
  189   LoadModule  log_confi g_module m odules/mod _log_confi g.so
  190   LoadModule  logio_mod ule module s/mod_logi o.so
  191   LoadModule  env_modul e modules/ mod_env.so
  192   LoadModule  ext_filte r_module m odules/mod _ext_filte r.so
  193   LoadModule  mime_magi c_module m odules/mod _mime_magi c.so
  194   LoadModule  expires_m odule modu les/mod_ex pires.so
  195   LoadModule  deflate_m odule modu les/mod_de flate.so
  196   LoadModule  headers_m odule modu les/mod_he aders.so
  197   LoadModule  usertrack _module mo dules/mod_ usertrack. so
  198   LoadModule  setenvif_ module mod ules/mod_s etenvif.so
  199   LoadModule  mime_modu le modules /mod_mime. so
  200   LoadModule  dav_modul e modules/ mod_dav.so
  201   LoadModule  status_mo dule modul es/mod_sta tus.so
  202   LoadModule  autoindex _module mo dules/mod_ autoindex. so
  203   LoadModule  info_modu le modules /mod_info. so
  204   LoadModule  dav_fs_mo dule modul es/mod_dav _fs.so
  205   LoadModule  vhost_ali as_module  modules/mo d_vhost_al ias.so
  206   LoadModule  negotiati on_module  modules/mo d_negotiat ion.so
  207   LoadModule  dir_modul e modules/ mod_dir.so
  208   LoadModule  actions_m odule modu les/mod_ac tions.so
  209   LoadModule  speling_m odule modu les/mod_sp eling.so
  210   LoadModule  userdir_m odule modu les/mod_us erdir.so
  211   LoadModule  alias_mod ule module s/mod_alia s.so
  212   LoadModule  substitut e_module m odules/mod _substitut e.so
  213   LoadModule  rewrite_m odule modu les/mod_re write.so
  214   LoadModule  proxy_mod ule module s/mod_prox y.so
  215   LoadModule  proxy_bal ancer_modu le modules /mod_proxy _balancer. so
  216   LoadModule  proxy_ftp _module mo dules/mod_ proxy_ftp. so
  217   LoadModule  proxy_htt p_module m odules/mod _proxy_htt p.so
  218   LoadModule  proxy_ajp _module mo dules/mod_ proxy_ajp. so
  219   LoadModule  proxy_con nect_modul e modules/ mod_proxy_ connect.so
  220   LoadModule  cache_mod ule module s/mod_cach e.so
  221   LoadModule  suexec_mo dule modul es/mod_sue xec.so
  222   LoadModule  disk_cach e_module m odules/mod _disk_cach e.so
  223   LoadModule  cgi_modul e modules/ mod_cgi.so
  224   LoadModule  version_m odule modu les/mod_ve rsion.so
  225  
  226   #
  227   # The foll owing modu les are no t loaded b y default:
  228   #
  229   #LoadModul e asis_mod ule module s/mod_asis .so
  230   #LoadModul e authn_db d_module m odules/mod _authn_dbd .so
  231   #LoadModul e cern_met a_module m odules/mod _cern_meta .so
  232   #LoadModul e cgid_mod ule module s/mod_cgid .so
  233   #LoadModul e dbd_modu le modules /mod_dbd.s o
  234   #LoadModul e dumpio_m odule modu les/mod_du mpio.so
  235   #LoadModul e filter_m odule modu les/mod_fi lter.so
  236   #LoadModul e ident_mo dule modul es/mod_ide nt.so
  237   #LoadModul e log_fore nsic_modul e modules/ mod_log_fo rensic.so
  238   #LoadModul e unique_i d_module m odules/mod _unique_id .so
  239   #
  240  
  241   #
  242   # Load con fig files  from the c onfig dire ctory "/et c/httpd/co nf.d".
  243   #
  244   Include co nf.d/*.con f
  245  
  246   #
  247   # Extended Status con trols whet her Apache  will gene rate "full " status
  248   # informat ion (Exten dedStatus  On) or jus t basic in formation  (ExtendedS tatus
  249   # Off) whe n the "ser ver-status " handler  is called.  The defau lt is Off.
  250   #
  251   #ExtendedS tatus On
  252  
  253   #
  254   # If you w ish httpd  to run as  a differen t user or  group, you  must run
  255   # httpd as  root init ially and  it will sw itch.
  256   #
  257   # User/Gro up: The na me (or #nu mber) of t he user/gr oup to run  httpd as.
  258   #  . On SC O (ODT 3)  use "User  nouser" an d "Group n ogroup".
  259   #  . On HP UX you may  not be ab le to use  shared mem ory as nob ody, and t he
  260   #    sugge sted worka round is t o create a  user www  and use th at user.
  261   #  NOTE th at some ke rnels refu se to setg id(Group)  or semctl( IPC_SET)
  262   #  when th e value of  (unsigned )Group is  above 6000 0;
  263   #  don't u se Group # -1 on thes e systems!
  264   #
  265   User apach e
  266   Group apac he
  267  
  268   ### Sectio n 2: 'Main ' server c onfigurati on
  269   #
  270   # The dire ctives in  this secti on set up  the values  used by t he 'main'
  271   # server,  which resp onds to an y requests  that aren 't handled  by a
  272   # <Virtual Host> defi nition.  T hese value s also pro vide defau lts for
  273   # any <Vir tualHost>  containers  you may d efine late r in the f ile.
  274   #
  275   # All of t hese direc tives may  appear ins ide <Virtu alHost> co ntainers,
  276   # in which  case thes e default  settings w ill be ove rridden fo r the
  277   # virtual  host being  defined.
  278   #
  279  
  280   #
  281   # ServerAd min: Your  address, w here probl ems with t he server  should be
  282   # e-mailed .  This ad dress appe ars on som e server-g enerated p ages, such
  283   # as error  documents .  e.g. ad min@your-d omain.com
  284   #
  285   ServerAdmi n root@loc alhost
  286  
  287   #
  288   # ServerNa me gives t he name an d port tha t the serv er uses to  identify  itself.
  289   # This can  often be  determined  automatic ally, but  we recomme nd you spe cify
  290   # it expli citly to p revent pro blems duri ng startup .
  291   #
  292   # If this  is not set  to valid  DNS name f or your ho st, server -generated
  293   # redirect ions will  not work.   See also  the UseCan onicalName  directive .
  294   #
  295   # If your  host doesn 't have a  registered  DNS name,  enter its  IP addres s here.
  296   # You will  have to a ccess it b y its addr ess anyway , and this  will make
  297   # redirect ions work  in a sensi ble way.
  298   #
  299   #ServerNam e www.exam ple.com:80
  300  
  301   #
  302   # UseCanon icalName:  Determines  how Apach e construc ts self-re ferencing
  303   # URLs and  the SERVE R_NAME and  SERVER_PO RT variabl es.
  304   # When set  "Off", Ap ache will  use the Ho stname and  Port supp lied
  305   # by the c lient.  Wh en set "On ", Apache  will use t he value o f the
  306   # ServerNa me directi ve.
  307   #
  308   UseCanonic alName Off
  309  
  310   #
  311   # Document Root: The  directory  out of whi ch you wil l serve yo ur
  312   # document s. By defa ult, all r equests ar e taken fr om this di rectory, b ut
  313   # symbolic  links and  aliases m ay be used  to point  to other l ocations.
  314   #
  315   DocumentRo ot "/var/w ww/html"
  316  
  317   #
  318   # Each dir ectory to  which Apac he has acc ess can be  configure d with res pect
  319   # to which  services  and featur es are all owed and/o r disabled  in that
  320   # director y (and its  subdirect ories).
  321   #
  322   # First, w e configur e the "def ault" to b e a very r estrictive  set of
  323   # features .
  324   #
  325   <Directory  />
  326       Option s FollowSy mLinks
  327       AllowO verride No ne
  328   </Director y>
  329  
  330   #
  331   # Note tha t from thi s point fo rward you  must speci fically al low
  332   # particul ar feature s to be en abled - so  if someth ing's not  working as
  333   # you migh t expect,  make sure  that you h ave specif ically ena bled it
  334   # below.
  335   #
  336  
  337   #
  338   # This sho uld be cha nged to wh atever you  set Docum entRoot to .
  339   #
  340   <Directory  "/var/www /html">
  341  
  342   #
  343   # Possible  values fo r the Opti ons direct ive are "N one", "All ",
  344   # or any c ombination  of:
  345   #   Indexe s Includes  FollowSym Links SymL inksifOwne rMatch Exe cCGI Multi Views
  346   #
  347   # Note tha t "MultiVi ews" must  be named * explicitly * --- "Opt ions All"
  348   # doesn't  give it to  you.
  349   #
  350   # The Opti ons direct ive is bot h complica ted and im portant.   Please see
  351   # http://h ttpd.apach e.org/docs /2.2/mod/c ore.html#o ptions
  352   # for more  informati on.
  353   #
  354       Option s Indexes  FollowSymL inks
  355  
  356   #
  357   # AllowOve rride cont rols what  directives  may be pl aced in .h taccess fi les.
  358   # It can b e "All", " None", or  any combin ation of t he keyword s:
  359   #   Option s FileInfo  AuthConfi g Limit
  360   #
  361       AllowO verride No ne
  362  
  363   #
  364   # Controls  who can g et stuff f rom this s erver.
  365   #
  366       Order  allow,deny
  367       Allow  from all
  368  
  369   </Director y>
  370  
  371   #
  372   # UserDir:  The name  of the dir ectory tha t is appen ded onto a  user's ho me
  373   # director y if a ~us er request  is receiv ed.
  374   #
  375   # The path  to the en d user acc ount 'publ ic_html' d irectory m ust be
  376   # accessib le to the  webserver  userid.  T his usuall y means th at ~userid
  377   # must hav e permissi ons of 711 , ~userid/ public_htm l must hav e permissi ons
  378   # of 755,  and docume nts contai ned therei n must be  world-read able.
  379   # Otherwis e, the cli ent will o nly receiv e a "403 F orbidden"  message.
  380   #
  381   # See also : http://h ttpd.apach e.org/docs /misc/FAQ. html#forbi dden
  382   #
  383   <IfModule  mod_userdi r.c>
  384       #
  385       # User Dir is dis abled by d efault sin ce it can  confirm th e presence
  386       # of a  username  on the sys tem (depen ding on ho me directo ry
  387       # perm issions).
  388       #
  389       UserDi r disabled
  390  
  391       #
  392       # To e nable requ ests to /~ user/ to s erve the u ser's publ ic_html
  393       # dire ctory, rem ove the "U serDir dis abled" lin e above, a nd uncomme nt
  394       # the  following  line inste ad:
  395       #
  396       #UserD ir public_ html
  397  
  398   </IfModule >
  399  
  400   #
  401   # Control  access to  UserDir di rectories.   The foll owing is a n example
  402   # for a si te where t hese direc tories are  restricte d to read- only.
  403   #
  404   #<Director y /home/*/ public_htm l>
  405   #    Allow Override F ileInfo Au thConfig L imit
  406   #    Optio ns MultiVi ews Indexe s SymLinks IfOwnerMat ch Include sNoExec
  407   #    <Limi t GET POST  OPTIONS>
  408   #        O rder allow ,deny
  409   #        A llow from  all
  410   #    </Lim it>
  411   #    <Limi tExcept GE T POST OPT IONS>
  412   #        O rder deny, allow
  413   #        D eny from a ll
  414   #    </Lim itExcept>
  415   #</Directo ry>
  416  
  417   #
  418   # Director yIndex: se ts the fil e that Apa che will s erve if a  directory
  419   # is reque sted.
  420   #
  421   # The inde x.html.var  file (a t ype-map) i s used to  deliver co ntent-
  422   # negotiat ed documen ts.  The M ultiViews  Option can  be used f or the
  423   # same pur pose, but  it is much  slower.
  424   #
  425   DirectoryI ndex index .html inde x.html.var
  426  
  427   #
  428   # AccessFi leName: Th e name of  the file t o look for  in each d irectory
  429   # for addi tional con figuration  directive s.  See al so the All owOverride
  430   # directiv e.
  431   #
  432   AccessFile Name .htac cess
  433  
  434   #
  435   # The foll owing line s prevent  .htaccess  and .htpas swd files  from being
  436   # viewed b y Web clie nts.
  437   #
  438   <Files ~ " ^\.ht">
  439       Order  allow,deny
  440       Deny f rom all
  441       Satisf y All
  442   </Files>
  443  
  444   #
  445   # TypesCon fig descri bes where  the mime.t ypes file  (or equiva lent) is
  446   # to be fo und.
  447   #
  448   TypesConfi g /etc/mim e.types
  449  
  450   #
  451   # DefaultT ype is the  default M IME type t he server  will use f or a docum ent
  452   # if it ca nnot other wise deter mine one,  such as fr om filenam e extensio ns.
  453   # If your  server con tains most ly text or  HTML docu ments, "te xt/plain"  is
  454   # a good v alue.  If  most of yo ur content  is binary , such as  applicatio ns
  455   # or image s, you may  want to u se "applic ation/octe t-stream"  instead to
  456   # keep bro wsers from  trying to  display b inary file s as thoug h they are
  457   # text.
  458   #
  459   DefaultTyp e text/pla in
  460  
  461   #
  462   # The mod_ mime_magic  module al lows the s erver to u se various  hints fro m the
  463   # contents  of the fi le itself  to determi ne its typ e.  The MI MEMagicFil e
  464   # directiv e tells th e module w here the h int defini tions are  located.
  465   #
  466   <IfModule  mod_mime_m agic.c>
  467   #   MIMEMa gicFile /u sr/share/m agic.mime
  468       MIMEMa gicFile co nf/magic
  469   </IfModule >
  470  
  471   #
  472   # Hostname Lookups: L og the nam es of clie nts or jus t their IP  addresses
  473   # e.g., ww w.apache.o rg (on) or  204.62.12 9.132 (off ).
  474   # The defa ult is off  because i t'd be ove rall bette r for the  net if peo ple
  475   # had to k nowingly t urn this f eature on,  since ena bling it m eans that
  476   # each cli ent reques t will res ult in AT  LEAST one  lookup req uest to th e
  477   # nameserv er.
  478   #
  479   HostnameLo okups Off
  480  
  481   #
  482   # EnableMM AP: Contro l whether  memory-map ping is us ed to deli ver
  483   # files (a ssuming th at the und erlying OS  supports  it).
  484   # The defa ult is on;  turn this  off if yo u serve fr om NFS-mou nted
  485   # filesyst ems.  On s ome system s, turning  it off (r egardless  of
  486   # filesyst em) can im prove perf ormance; f or details , please s ee
  487   # http://h ttpd.apach e.org/docs /2.2/mod/c ore.html#e nablemmap
  488   #
  489   #EnableMMA P off
  490  
  491   #
  492   # EnableSe ndfile: Co ntrol whet her the se ndfile ker nel suppor t is
  493   # used to  deliver fi les (assum ing that t he OS supp orts it).
  494   # The defa ult is on;  turn this  off if yo u serve fr om NFS-mou nted
  495   # filesyst ems.  Plea se see
  496   # http://h ttpd.apach e.org/docs /2.2/mod/c ore.html#e nablesendf ile
  497   #
  498   #EnableSen dfile off
  499  
  500   #
  501   # ErrorLog : The loca tion of th e error lo g file.
  502   # If you d o not spec ify an Err orLog dire ctive with in a <Virt ualHost>
  503   # containe r, error m essages re lating to  that virtu al host wi ll be
  504   # logged h ere.  If y ou *do* de fine an er ror logfil e for a <V irtualHost >
  505   # containe r, that ho st's error s will be  logged the re and not  here.
  506   #
  507   ErrorLog l ogs/error_ log
  508  
  509   #
  510   # LogLevel : Control  the number  of messag es logged  to the err or_log.
  511   # Possible  values in clude: deb ug, info,  notice, wa rn, error,  crit,
  512   # alert, e merg.
  513   #
  514   LogLevel i nfo
  515  
  516   #
  517   # The foll owing dire ctives def ine some f ormat nick names for  use with
  518   # a Custom Log direct ive (see b elow).
  519   #
  520   LogFormat  "%h %l %u  %t \"%r\"  %>s %b \"% {Referer}i \" \"%{Use r-Agent}i\ "" combine d
  521   LogFormat  "%h %l %u  %t \"%r\"  %>s %b" co mmon
  522   LogFormat  "%{Referer }i -> %U"  referer
  523   LogFormat  "%{User-ag ent}i" age nt
  524  
  525   # "combine dio" inclu des actual  counts of  actual by tes receiv ed (%I) an d sent (%O ); this
  526   # requires  the mod_l ogio modul e to be lo aded.
  527   #LogFormat  "%h %l %u  %t \"%r\"  %>s %b \" %{Referer} i\" \"%{Us er-Agent}i \" %I %O"  combinedio
  528  
  529   #
  530   # The loca tion and f ormat of t he access  logfile (C ommon Logf ile Format ).
  531   # If you d o not defi ne any acc ess logfil es within  a <Virtual Host>
  532   # containe r, they wi ll be logg ed here.   Contrariwi se, if you  *do*
  533   # define p er-<Virtua lHost> acc ess logfil es, transa ctions wil l be
  534   # logged t herein and  *not* in  this file.
  535   #
  536   #CustomLog  logs/acce ss_log com mon
  537  
  538   #
  539   # If you w ould like  to have se parate age nt and ref erer logfi les, uncom ment
  540   # the foll owing dire ctives.
  541   #
  542   #CustomLog  logs/refe rer_log re ferer
  543   #CustomLog  logs/agen t_log agen t
  544  
  545   #
  546   # For a si ngle logfi le with ac cess, agen t, and ref erer infor mation
  547   # (Combine d Logfile  Format), u se the fol lowing dir ective:
  548   #
  549   CustomLog  logs/acces s_log comb ined
  550  
  551   #
  552   # Optional ly add a l ine contai ning the s erver vers ion and vi rtual host
  553   # name to  server-gen erated pag es (intern al error d ocuments,  FTP direct ory
  554   # listings , mod_stat us and mod _info outp ut etc., b ut not CGI  generated
  555   # document s or custo m error do cuments).
  556   # Set to " EMail" to  also inclu de a mailt o: link to  the Serve rAdmin.
  557   # Set to o ne of:  On  | Off | E Mail
  558   #
  559   ServerSign ature On
  560  
  561   #
  562   # Aliases:  Add here  as many al iases as y ou need (w ith no lim it). The f ormat is
  563   # Alias fa kename rea lname
  564   #
  565   # Note tha t if you i nclude a t railing /  on fakenam e then the  server wi ll
  566   # require  it to be p resent in  the URL.   So "/icons " isn't al iased in t his
  567   # example,  only "/ic ons/".  If  the faken ame is sla sh-termina ted, then  the
  568   # realname  must also  be slash  terminated , and if t he fakenam e omits th e
  569   # trailing  slash, th e realname  must also  omit it.
  570   #
  571   # We inclu de the /ic ons/ alias  for Fancy Indexed di rectory li stings.  I f you
  572   # do not u se FancyIn dexing, yo u may comm ent this o ut.
  573   #
  574   Alias /sit eminderage nt/nocert/ [0-9]+/(.* ) "/app/CA /webagent/ $1"
  575   <Directory  "/app/CA/ webagent/$ 1">
  576   Options In dexes Mult iViews
  577   AllowOverr ide None
  578   Order allo w,deny
  579   Allow from  all
  580   </Director y>
  581   Alias /sit eminderage nt/pwcgi/  "/app/CA/w ebagent/pw /"
  582   <Directory  "/app/CA/ webagent/p w/">
  583   Options In dexes Mult iViews Exe cCGI
  584   AllowOverr ide None
  585   Order allo w,deny
  586   Allow from  all
  587   </Director y>
  588   Alias /sit eminderage nt/pw/ "/a pp/CA/weba gent/pw/"
  589   <Directory  "/app/CA/ webagent/p w/">
  590   Options In dexes Mult iViews Exe cCGI
  591   AllowOverr ide None
  592   Order allo w,deny
  593   Allow from  all
  594   </Director y>
  595   Alias /sit eminderage nt/ "/app/ CA/webagen t/samples/ "
  596   <Directory  "/app/CA/ webagent/s amples/">
  597   Options In dexes Mult iViews
  598   AllowOverr ide None
  599   Order allo w,deny
  600   Allow from  all
  601   </Director y>
  602   Alias /ico ns/ "/var/ www/icons/ "
  603  
  604   <Directory  "/var/www /icons">
  605       Option s Indexes  MultiViews  FollowSym Links
  606       AllowO verride No ne
  607       Order  allow,deny
  608       Allow  from all
  609   </Director y>
  610  
  611   #
  612   # WebDAV m odule conf iguration  section.
  613   #
  614   <IfModule  mod_dav_fs .c>
  615       # Loca tion of th e WebDAV l ock databa se.
  616       DAVLoc kDB /var/l ib/dav/loc kdb
  617   </IfModule >
  618  
  619   #
  620   # ScriptAl ias: This  controls w hich direc tories con tain serve r scripts.
  621   # ScriptAl iases are  essentiall y the same  as Aliase s, except  that
  622   # document s in the r ealname di rectory ar e treated  as applica tions and
  623   # run by t he server  when reque sted rathe r than as  documents  sent to th e client.
  624   # The same  rules abo ut trailin g "/" appl y to Scrip tAlias dir ectives as  to
  625   # Alias.
  626   #
  627   ScriptAlia s /cgi-bin / "/var/ww w/cgi-bin/ "
  628  
  629   #
  630   # "/var/ww w/cgi-bin"  should be  changed t o whatever  your Scri ptAliased
  631   # CGI dire ctory exis ts, if you  have that  configure d.
  632   #
  633   <Directory  "/var/www /cgi-bin">
  634       AllowO verride No ne
  635       Option s None
  636       Order  allow,deny
  637       Allow  from all
  638   </Director y>
  639  
  640   #
  641   # Redirect  allows yo u to tell  clients ab out docume nts which  used to ex ist in
  642   # your ser ver's name space, but  do not an ymore. Thi s allows y ou to tell  the
  643   # clients  where to l ook for th e relocate d document .
  644   # Example:
  645   # Redirect  permanent  /foo http ://www.exa mple.com/b ar
  646  
  647   #
  648   # Directiv es control ling the d isplay of  server-gen erated dir ectory lis tings.
  649   #
  650  
  651   #
  652   # IndexOpt ions: Cont rols the a ppearance  of server- generated  directory
  653   # listings .
  654   #
  655   IndexOptio ns FancyIn dexing Ver sionSort N ameWidth=*  HTMLTable  Charset=U TF-8
  656  
  657   #
  658   # AddIcon*  directive s tell the  server wh ich icon t o show for  different
  659   # files or  filename  extensions .  These a re only di splayed fo r
  660   # FancyInd exed direc tories.
  661   #
  662   AddIconByE ncoding (C MP,/icons/ compressed .gif) x-co mpress x-g zip
  663  
  664   AddIconByT ype (TXT,/ icons/text .gif) text /*
  665   AddIconByT ype (IMG,/ icons/imag e2.gif) im age/*
  666   AddIconByT ype (SND,/ icons/soun d2.gif) au dio/*
  667   AddIconByT ype (VID,/ icons/movi e.gif) vid eo/*
  668  
  669   AddIcon /i cons/binar y.gif .bin  .exe
  670   AddIcon /i cons/binhe x.gif .hqx
  671   AddIcon /i cons/tar.g if .tar
  672   AddIcon /i cons/world 2.gif .wrl  .wrl.gz . vrml .vrm  .iv
  673   AddIcon /i cons/compr essed.gif  .Z .z .tgz  .gz .zip
  674   AddIcon /i cons/a.gif  .ps .ai . eps
  675   AddIcon /i cons/layou t.gif .htm l .shtml . htm .pdf
  676   AddIcon /i cons/text. gif .txt
  677   AddIcon /i cons/c.gif  .c
  678   AddIcon /i cons/p.gif  .pl .py
  679   AddIcon /i cons/f.gif  .for
  680   AddIcon /i cons/dvi.g if .dvi
  681   AddIcon /i cons/uuenc oded.gif . uu
  682   AddIcon /i cons/scrip t.gif .con f .sh .sha r .csh .ks h .tcl
  683   AddIcon /i cons/tex.g if .tex
  684   AddIcon /i cons/bomb. gif /core
  685  
  686   AddIcon /i cons/back. gif ..
  687   AddIcon /i cons/hand. right.gif  README
  688   AddIcon /i cons/folde r.gif ^^DI RECTORY^^
  689   AddIcon /i cons/blank .gif ^^BLA NKICON^^
  690  
  691   #
  692   # DefaultI con is whi ch icon to  show for  files whic h do not h ave an ico n
  693   # explicit ly set.
  694   #
  695   DefaultIco n /icons/u nknown.gif
  696  
  697   #
  698   # AddDescr iption all ows you to  place a s hort descr iption aft er a file  in
  699   # server-g enerated i ndexes.  T hese are o nly displa yed for Fa ncyIndexed
  700   # director ies.
  701   # Format:  AddDescrip tion "desc ription" f ilename
  702   #
  703   #AddDescri ption "GZI P compress ed documen t" .gz
  704   #AddDescri ption "tar  archive"  .tar
  705   #AddDescri ption "GZI P compress ed tar arc hive" .tgz
  706  
  707   #
  708   # ReadmeNa me is the  name of th e README f ile the se rver will  look for b y
  709   # default,  and appen d to direc tory listi ngs.
  710   #
  711   # HeaderNa me is the  name of a  file which  should be  prepended  to
  712   # director y indexes.
  713   ReadmeName  README.ht ml
  714   HeaderName  HEADER.ht ml
  715  
  716   #
  717   # IndexIgn ore is a s et of file names whic h director y indexing  should ig nore
  718   # and not  include in  the listi ng.  Shell -style wil dcarding i s permitte d.
  719   #
  720   IndexIgnor e .??* *~  *# HEADER*  README* R CS CVS *,v  *,t
  721  
  722   #
  723   # DefaultL anguage an d AddLangu age allows  you to sp ecify the  language o f
  724   # a docume nt. You ca n then use  content n egotiation  to give a  browser a
  725   # file in  a language  the user  can unders tand.
  726   #
  727   # Specify  a default  language.  This means  that all  data
  728   # going ou t without  a specific  language  tag (see b elow) will
  729   # be marke d with thi s one. You  probably  do NOT wan t to set
  730   # this unl ess you ar e sure it  is correct  for all c ases.
  731   #
  732   # * It is  generally  better to  not mark a  page as
  733   # * being  a certain  language t han markin g it with  the wrong
  734   # * langua ge!
  735   #
  736   # DefaultL anguage nl
  737   #
  738   # Note 1:  The suffix  does not  have to be  the same  as the lan guage
  739   # keyword  --- those  with docum ents in Po lish (whos e net-stan dard
  740   # language  code is p l) may wis h to use " AddLanguag e pl .po"  to
  741   # avoid th e ambiguit y with the  common su ffix for p erl script s.
  742   #
  743   # Note 2:  The exampl e entries  below illu strate tha t in some  cases
  744   # the two  character  'Language'  abbreviat ion is not  identical  to
  745   # the two  character  'Country'  code for i ts country ,
  746   # E.g. 'Da nmark/dk'  versus 'Da nish/da'.
  747   #
  748   # Note 3:  In the cas e of 'ltz'  we violat e the RFC  by using a  three cha r
  749   # specifie r. There i s 'work in  progress'  to fix th is and get
  750   # the refe rence data  for rfc17 66 cleaned  up.
  751   #
  752   # Catalan  (ca) - Cro atian (hr)  - Czech ( cs) - Dani sh (da) -  Dutch (nl)
  753   # English  (en) - Esp eranto (eo ) - Estoni an (et) -  French (fr ) - German  (de)
  754   # Greek-Mo dern (el)  - Hebrew ( he) - Ital ian (it) -  Japanese  (ja)
  755   # Korean ( ko) - Luxe mbourgeois * (ltz) -  Norwegian  Nynorsk (n n)
  756   # Norwegia n (no) - P olish (pl)  - Portuge se (pt)
  757   # Brazilia n Portugue se (pt-BR)  - Russian  (ru) - Sw edish (sv)
  758   # Simplifi ed Chinese  (zh-CN) -  Spanish ( es) - Trad itional Ch inese (zh- TW)
  759   #
  760   AddLanguag e ca .ca
  761   AddLanguag e cs .cz . cs
  762   AddLanguag e da .dk
  763   AddLanguag e de .de
  764   AddLanguag e el .el
  765   AddLanguag e en .en
  766   AddLanguag e eo .eo
  767   AddLanguag e es .es
  768   AddLanguag e et .et
  769   AddLanguag e fr .fr
  770   AddLanguag e he .he
  771   AddLanguag e hr .hr
  772   AddLanguag e it .it
  773   AddLanguag e ja .ja
  774   AddLanguag e ko .ko
  775   AddLanguag e ltz .ltz
  776   AddLanguag e nl .nl
  777   AddLanguag e nn .nn
  778   AddLanguag e no .no
  779   AddLanguag e pl .po
  780   AddLanguag e pt .pt
  781   AddLanguag e pt-BR .p t-br
  782   AddLanguag e ru .ru
  783   AddLanguag e sv .sv
  784   AddLanguag e zh-CN .z h-cn
  785   AddLanguag e zh-TW .z h-tw
  786  
  787   #
  788   # Language Priority a llows you  to give pr ecedence t o some lan guages
  789   # in case  of a tie d uring cont ent negoti ation.
  790   #
  791   # Just lis t the lang uages in d ecreasing  order of p reference.  We have
  792   # more or  less alpha betized th em here. Y ou probabl y want to  change thi s.
  793   #
  794   LanguagePr iority en  ca cs da d e el eo es  et fr he  hr it ja k o ltz nl n n no pl pt  pt-BR ru  sv zh-CN z h-TW
  795  
  796   #
  797   # ForceLan guagePrior ity allows  you to se rve a resu lt page ra ther than
  798   # MULTIPLE  CHOICES ( Prefer) [i n case of  a tie] or  NOT ACCEPT ABLE (Fall back)
  799   # [in case  no accept ed languag es matched  the avail able varia nts]
  800   #
  801   ForceLangu agePriorit y Prefer F allback
  802  
  803   #
  804   # Specify  a default  charset fo r all cont ent served ; this ena bles
  805   # interpre tation of  all conten t as UTF-8  by defaul t.  To use  the
  806   # default  browser ch oice (ISO- 8859-1), o r to allow  the META  tags
  807   # in HTML  content to  override  this choic e, comment  out this
  808   # directiv e:
  809   #
  810   AddDefault Charset UT F-8
  811  
  812   #
  813   # AddType  allows you  to add to  or overri de the MIM E configur ation
  814   # file mim e.types fo r specific  file type s.
  815   #
  816   #AddType a pplication /x-tar .tg z
  817  
  818   #
  819   # AddEncod ing allows  you to ha ve certain  browsers  uncompress
  820   # informat ion on the  fly. Note : Not all  browsers s upport thi s.
  821   # Despite  the name s imilarity,  the follo wing Add*  directives  have noth ing
  822   # to do wi th the Fan cyIndexing  customiza tion direc tives abov e.
  823   #
  824   #AddEncodi ng x-compr ess .Z
  825   #AddEncodi ng x-gzip  .gz .tgz
  826  
  827   # If the A ddEncoding  directive s above ar e commente d-out, the n you
  828   # probably  should de fine those  extension s to indic ate media  types:
  829   #
  830   AddType ap plication/ x-compress  .Z
  831   AddType ap plication/ x-gzip .gz  .tgz
  832  
  833   #
  834   #   MIME-t ypes for d ownloading  Certifica tes and CR Ls
  835   #
  836   AddType ap plication/ x-x509-ca- cert .crt
  837   AddType ap plication/ x-pkcs7-cr l    .crl
  838  
  839   #
  840   # AddHandl er allows  you to map  certain f ile extens ions to "h andlers":
  841   # actions  unrelated  to filetyp e. These c an be eith er built i nto the se rver
  842   # or added  with the  Action dir ective (se e below)
  843   #
  844   # To use C GI scripts  outside o f ScriptAl iased dire ctories:
  845   # (You wil l also nee d to add " ExecCGI" t o the "Opt ions" dire ctive.)
  846   #
  847   #AddHandle r cgi-scri pt .cgi
  848  
  849   #
  850   # For file s that inc lude their  own HTTP  headers:
  851   #
  852   #AddHandle r send-as- is asis
  853  
  854   #
  855   # For type  maps (neg otiated re sources):
  856   # (This is  enabled b y default  to allow t he Apache  "It Worked " page
  857   #  to be d istributed  in multip le languag es.)
  858   #
  859   AddHandler  type-map  var
  860  
  861   #
  862   # Filters  allow you  to process  content b efore it i s sent to  the client .
  863   #
  864   # To parse  .shtml fi les for se rver-side  includes ( SSI):
  865   # (You wil l also nee d to add " Includes"  to the "Op tions" dir ective.)
  866   #
  867   AddType te xt/html .s html
  868   AddOutputF ilter INCL UDES .shtm l
  869  
  870   #
  871   # Action l ets you de fine media  types tha t will exe cute a scr ipt whenev er
  872   # a matchi ng file is  called. T his elimin ates the n eed for re peated URL
  873   # pathname s for oft- used CGI f ile proces sors.
  874   # Format:  Action med ia/type /c gi-script/ location
  875   # Format:  Action han dler-name  /cgi-scrip t/location
  876   #
  877  
  878   #
  879   # Customiz able error  responses  come in t hree flavo rs:
  880   # 1) plain  text 2) l ocal redir ects 3) ex ternal red irects
  881   #
  882   # Some exa mples:
  883   #ErrorDocu ment 500 " The server  made a bo o boo."
  884   #ErrorDocu ment 404 / missing.ht ml
  885   #ErrorDocu ment 404 " /cgi-bin/m issing_han dler.pl"
  886   #ErrorDocu ment 402 h ttp://www. example.co m/subscrip tion_info. html
  887   #
  888  
  889   #
  890   # Putting  this all t ogether, w e can inte rnationali ze error r esponses.
  891   #
  892   # We use A lias to re direct any  /error/HT TP_<error> .html.var  response t o
  893   # our coll ection of  by-error m essage mul ti-languag e collecti ons.  We u se
  894   # includes  to substi tute the a ppropriate  text.
  895   #
  896   # You can  modify the  messages'  appearanc e without  changing a ny of the
  897   # default  HTTP_<erro r>.html.va r files by  adding th e line:
  898   #
  899   #   Alias  /error/inc lude/ "/yo ur/include /path/"
  900   #
  901   # which al lows you t o create y our own se t of files  by starti ng with th e
  902   # /var/www /error/inc lude/ file s and
  903   # copying  them to /y our/includ e/path/, e ven on a p er-Virtual Host basis .
  904   #
  905  
  906   Alias /err or/ "/var/ www/error/ "
  907  
  908   <IfModule  mod_negoti ation.c>
  909   <IfModule  mod_includ e.c>
  910       <Direc tory "/var /www/error ">
  911           Al lowOverrid e None
  912           Op tions Incl udesNoExec
  913           Ad dOutputFil ter Includ es html
  914           Ad dHandler t ype-map va r
  915           Or der allow, deny
  916           Al low from a ll
  917           La nguagePrio rity en es  de fr
  918           Fo rceLanguag ePriority  Prefer Fal lback
  919       </Dire ctory>
  920  
  921   #    Error Document 4 00 /error/ HTTP_BAD_R EQUEST.htm l.var
  922   #    Error Document 4 01 /error/ HTTP_UNAUT HORIZED.ht ml.var
  923   #    Error Document 4 03 /error/ HTTP_FORBI DDEN.html. var
  924   #    Error Document 4 04 /error/ HTTP_NOT_F OUND.html. var
  925   #    Error Document 4 05 /error/ HTTP_METHO D_NOT_ALLO WED.html.v ar
  926   #    Error Document 4 08 /error/ HTTP_REQUE ST_TIME_OU T.html.var
  927   #    Error Document 4 10 /error/ HTTP_GONE. html.var
  928   #    Error Document 4 11 /error/ HTTP_LENGT H_REQUIRED .html.var
  929   #    Error Document 4 12 /error/ HTTP_PRECO NDITION_FA ILED.html. var
  930   #    Error Document 4 13 /error/ HTTP_REQUE ST_ENTITY_ TOO_LARGE. html.var
  931   #    Error Document 4 14 /error/ HTTP_REQUE ST_URI_TOO _LARGE.htm l.var
  932   #    Error Document 4 15 /error/ HTTP_UNSUP PORTED_MED IA_TYPE.ht ml.var
  933   #    Error Document 5 00 /error/ HTTP_INTER NAL_SERVER _ERROR.htm l.var
  934   #    Error Document 5 01 /error/ HTTP_NOT_I MPLEMENTED .html.var
  935   #    Error Document 5 02 /error/ HTTP_BAD_G ATEWAY.htm l.var
  936   #    Error Document 5 03 /error/ HTTP_SERVI CE_UNAVAIL ABLE.html. var
  937   #    Error Document 5 06 /error/ HTTP_VARIA NT_ALSO_VA RIES.html. var
  938  
  939   </IfModule >
  940   </IfModule >
  941  
  942   #
  943   # The foll owing dire ctives mod ify normal  HTTP resp onse behav ior to
  944   # handle k nown probl ems with b rowser imp lementatio ns.
  945   #
  946   BrowserMat ch "Mozill a/2" nokee palive
  947   BrowserMat ch "MSIE 4 \.0b2;" no keepalive  downgrade- 1.0 force- response-1 .0
  948   BrowserMat ch "RealPl ayer 4\.0"  force-res ponse-1.0
  949   BrowserMat ch "Java/1 \.0" force -response- 1.0
  950   BrowserMat ch "JDK/1\ .0" force- response-1 .0
  951  
  952   #
  953   # The foll owing dire ctive disa bles redir ects on no n-GET requ ests for
  954   # a direct ory that d oes not in clude the  trailing s lash.  Thi s fixes a
  955   # problem  with Micro soft WebFo lders whic h does not  appropria tely handl e
  956   # redirect s for fold ers with D AV methods .
  957   # Same dea l with App le's DAV f ilesystem  and Gnome  VFS suppor t for DAV.
  958   #
  959   BrowserMat ch "Micros oft Data A ccess Inte rnet Publi shing Prov ider" redi rect-caref ully
  960   BrowserMat ch "MS Fro ntPage" re direct-car efully
  961   BrowserMat ch "^WebDr ive" redir ect-carefu lly
  962   BrowserMat ch "^WebDA VFS/1.[012 3]" redire ct-careful ly
  963   BrowserMat ch "^gnome -vfs/1.0"  redirect-c arefully
  964   BrowserMat ch "^XML S py" redire ct-careful ly
  965   BrowserMat ch "^Dream weaver-Web DAV-SCM1"  redirect-c arefully
  966  
  967   #
  968   # Allow se rver statu s reports  generated  by mod_sta tus,
  969   # with the  URL of ht tp://serve rname/serv er-status
  970   # Change t he ".examp le.com" to  match you r domain t o enable.
  971   #
  972   #<Location  /server-s tatus>
  973   #    SetHa ndler serv er-status
  974   #    Order  deny,allo w
  975   #    Deny  from all
  976   #    Allow  from .exa mple.com
  977   #</Locatio n>
  978  
  979   #
  980   # Allow re mote serve r configur ation repo rts, with  the URL of
  981   #  http:// servername /server-in fo (requir es that mo d_info.c b e loaded).
  982   # Change t he ".examp le.com" to  match you r domain t o enable.
  983   #
  984   #<Location  /server-i nfo>
  985   #    SetHa ndler serv er-info
  986   #    Order  deny,allo w
  987   #    Deny  from all
  988   #    Allow  from .exa mple.com
  989   #</Locatio n>
  990  
  991   #
  992   # Proxy Se rver direc tives. Unc omment the  following  lines to
  993   # enable t he proxy s erver:
  994   #
  995   #<IfModule  mod_proxy .c>
  996   #ProxyRequ ests On
  997   #
  998   #<Proxy *>
  999   #    Order  deny,allo w
  1000   #    Deny  from all
  1001   #    Allow  from .exa mple.com
  1002   #</Proxy>
  1003  
  1004   #
  1005   # Enable/d isable the  handling  of HTTP/1. 1 "Via:" h eaders.
  1006   # ("Full"  adds the s erver vers ion; "Bloc k" removes  all outgo ing Via: h eaders)
  1007   # Set to o ne of: Off  | On | Fu ll | Block
  1008   #
  1009   #ProxyVia  On
  1010  
  1011   #
  1012   # To enabl e a cache  of proxied  content,  uncomment  the follow ing lines.
  1013   # See http ://httpd.a pache.org/ docs/2.2/m od/mod_cac he.html fo r more det ails.
  1014   #
  1015   #<IfModule  mod_disk_ cache.c>
  1016   #   CacheE nable disk  /
  1017   #   CacheR oot "/var/ cache/mod_ proxy"
  1018   #</IfModul e>
  1019   #
  1020  
  1021   #</IfModul e>
  1022   # End of p roxy direc tives.
  1023  
  1024   ### Sectio n 3: Virtu al Hosts
  1025   #
  1026   # VirtualH ost: If yo u want to  maintain m ultiple do mains/host names on y our
  1027   # machine  you can se tup Virtua lHost cont ainers for  them. Mos t configur ations
  1028   # use only  name-base d virtual  hosts so t he server  doesn't ne ed to worr y about
  1029   # IP addre sses. This  is indica ted by the  asterisks  in the di rectives b elow.
  1030   #
  1031   # Please s ee the doc umentation  at
  1032   # <URL:htt p://httpd. apache.org /docs/2.2/ vhosts/>
  1033   # for furt her detail s before y ou try to  setup virt ual hosts.
  1034   #
  1035   # You may  use the co mmand line  option '- S' to veri fy your vi rtual host
  1036   # configur ation.
  1037  
  1038   #
  1039   # Use name -based vir tual hosti ng.
  1040   #
  1041   #NameVirtu alHost *:8 0
  1042   #
  1043   # NOTE: Na meVirtualH ost cannot  be used w ithout a p ort specif ier
  1044   # (e.g. :8 0) if mod_ ssl is bei ng used, d ue to the  nature of  the
  1045   # SSL prot ocol.
  1046   #
  1047  
  1048   #
  1049   # VirtualH ost exampl e:
  1050   # Almost a ny Apache  directive  may go int o a Virtua lHost cont ainer.
  1051   # The firs t VirtualH ost sectio n is used  for reques ts without  a known
  1052   # server n ame.
  1053   #
  1054   #<VirtualH ost *:80>
  1055   #    Serve rAdmin web master@dum my-host.ex ample.com
  1056   #    Docum entRoot /w ww/docs/du mmy-host.e xample.com
  1057   #    Serve rName dumm y-host.exa mple.com
  1058   #    Error Log logs/d ummy-host. example.co m-error_lo g
  1059   #    Custo mLog logs/ dummy-host .example.c om-access_ log common
  1060   #</Virtual Host>
  1061   # This ent ry support  the abili ty for Tra ceEnable.  It should  be set to  "off" for
  1062   # security  purposes.
  1063     TraceEna ble off
  1064   # Limit ht tp request . Set to 1 5M for sec urity purp oses
  1065     LimitReq uestBody 1 5000000
  1066   PerlRequir e /etc/htt pd/scripts /startup.p l
  1067   PerlRequir e /etc/htt pd/scripts /constants .pl
  1068   <Location  /git/>
  1069     PerlFixu pHandler P risme::Val idateHeade r
  1070   </Location >
  1071  
  1072   <Location  /nexus/>
  1073     PerlFixu pHandler P risme::Val idateHeade r
  1074   </Location >
  1075  
  1076   <Location  /jenkins/>
  1077     PerlFixu pHandler P risme::Val idateHeade r
  1078   </Location >