Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

  1. Alterar a TAG <HOST>, incluindo uma nova TAG <Valve>, conforme abaixo:

    Bloco de código
    languagexml
    titleAntes
    linenumberstrue
    <Host name="localhost"  appBase="webapps" startStopThreads="20"
    	unpackWARs="true" autoDeploy="true">
    	
    	...
    
    	<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
    	   prefix="localhost_access_log" suffix=".txt"
    	   pattern="%h %l %u %t "%r" %s %b" />
    	   
    </Host>
    Bloco de código
    languagexml
    titleDepois
    linenumberstrue
    <Host name="localhost"  appBase="webapps" startStopThreads="20"
    	unpackWARs="true" autoDeploy="true">
    
    	...
    	
    	<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
    	   prefix="localhost_access_log" suffix=".txt"
    	   pattern="%h %l %u %t "%r" %s %b" />
    	   
    	<Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="false" showServerInfo="false" />
    
    </Host>

...