Lasst uns sagen, ich habe die folgende Konfiguration:Proxypass und DocumentRoot auf einer Domain
<VirtualHost domain.com>
# Server names, admins, logs etc...
ProxyVia On
ProxyRequests Off
<Location "/">
ProxyPass http://localhost:8080/tomcat-webapp/
ProxyPassReverse http://localhost:8080/tomcat-webapp/
Order allow,deny
Allow from all
</Location>
</VirtualHost>
Jetzt möchte ich die Adresse domain.com/forum
conent meines MyBB Forum angezeigt werden, die Dateien in /var/www/forum
Verzeichnis befinden. Wie erreiche ich das?
Jede Idee, über diese Frage? Vielen Dank! http://stackoverflow.com/questions/31271434/apache-mod-proxy-with-tomcat-and-svn –