Hi!
Since you do have a worker for each tomcat instance, you just have to assign the paths to the correct worker in mod_jk.conf:
JkMount /path1 ajp13_1
JkMount /path2 ajp13_2
(or whatever your workers are named in workers.properties)
Kurt Bremser
AMOS Austria
Newton was wrong. There is no gravity. The Earth sucks. Von: Fred Finn [fred.finn@xxxxxxxxx] Gesendet: Freitag, 2. Mai 2014 00:02 An: users@xxxxxxxxxxxxxxxx Betreff: Configuring two tomcat instances resolving to a directory on the same domain [wd-vc] Hi, www.example.com/firstI'm trying to setup my httpd.conf to allow one domain, with two directories to resolve to two different tomcat instances. But I've gotten a bit lost. Any guidance will be so appreciated!! <VirtualHost "ip address":80> ServerName example/first ErrorLog /var/log/httpd/first_error.log CustomLog /var/log/httpd/first_access.log combined <Proxy *> AddDefaultCharset off Order deny,allow Allow from all </Proxy> ProxyPass / ajp://localhost:8009/ ProxyPassReverse / ajp://localhost:8009/ </VirtualHost> www.example.com/second <VirtualHost "ip address":80> ServerName example/second ErrorLog /var/log/httpd/second_error.log CustomLog /var/log/httpd/second_access.log combined <Proxy *> AddDefaultCharset off Order deny,allow Allow from all </Proxy> ProxyPass / ajp://localhost:8010/ ProxyPassReverse / ajp://localhost:8010/ </VirtualHost> AMOS Austria GmbH 1130 Wien, Hietzinger Kai 101-105 FN 365014k, Handelsgericht Wien UID: ATU 66614737 http://www.allianz.at ******************************************************** Dieses E-Mail und allfaellig daran angeschlossene Anhaenge enthalten Informationen, die vertraulich und ausschliesslich fuer den (die) bezeichneten Adressaten bestimmt sind. Wenn Sie nicht der genannte Adressat sind, darf dieses E-Mail samt allfaelliger Anhaenge von Ihnen weder anderen Personen zugaenglich gemacht noch in anderer Weise verwertet werden. Wenn Sie nicht der beabsichtigte Empfaenger sind, bitten wir Sie, dieses E-Mail und saemtliche angeschlossene Anhaenge zu loeschen. Please note: This email and any files transmitted with it is intended only for the named recipients and may contain confidential and/or privileged information. If you are not the intended recipient, please do not read, copy, use or disclose the contents of this communication to others and notify the sender immediately. Then please delete the email and any copies of it. Thank you. ******************************************************** |