Configurei o apache para repassar as requisições pro tomcat através do mod_proxy
<IfModule mod_proxy.c>
ProxyRequests Off -> deixe essa linha como Off, já tive problema com ela
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
AllowCONNECT 443
</IfModule>
blz ai ta tudo ok
Agora gostaria que o apache ficasse responsavel pelo conteudo estatico
alguem sabe como eu configuraria isso?
UMA SOLUÇÃO SERIA UMA EXPRESSÃO REGULAR QUE EXCLUISSE O .gif e .jpg PARA SUBSTITUIR pelo /
MAS COMO SERIA ESSA EXPRESSÃO JA TENTE FAZER, MAS AGORA NÃO CONSEGUI FAZER UMA Q FUNCIONASSE!
no root do apache, criei uma pasta /static/ onde está todas as imagens (gifs e jpg)
tem como configurar para q se uma requisição q contenha: /static não execute o proxy reverse e sim apache??
eu tentei colocar como um proxy reverso, dessa forma:
ProxyPass /static http://localhost/
ProxyPassReverse /static http://localhost/
mas não adiantou
att. Dirceu