由Apache的tomcat图像服务器提供的页面

我需要configurationApache来调用Tomcat来提供一个页面,并且这个页面上有一个名为logo的/image文件,它应该由Apache提供。 这是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> 

/etc/apache2/workers.properties

 worker.list=worker1 worker.worker1.type=ajp13 worker.worker1.host=localhost worker.worker1.port=8009 

应该提供的图像位于/var/www/helloworld/image/ ,但不起作用。