Eu preciso configurar o Apache para chamar o Tomcat para exibir uma página, e essa página tem uma imagem na pasta /image
chamada logo que deve ser atendida pelo Apache.
Este é o host virtual do Apache:
<VirtualHost *:80>
DocumentRoot "/var/www/helloworld"
ServerName helloworld
<Directory "/var/www/helloworld">
allow from all
Options None
Require all granted
</Directory>
JkMount /helloworld worker1
JkMount /helloworld/* worker1
JkUnMount /helloworld/images worker1
</VirtualHost>
e /etc/apache2/workers.properties
:
worker.list=worker1
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
A imagem que deve ser veiculada está em /var/www/helloworld/image/
, mas não está funcionando.
Tags tomcat7 apache-2.4