Hi!
I have a problem with apache + Tomcat. I am trying to put apache in front of
Tomcat to access my app but I am getting an error 404.
I have 2 virtual servers in apache for 2 DNS with 2 tomcats
This is one of my virtual server
<VirtualHost *:80>
ServerName server1.org
ServerAlias *.server1.org
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
#ProxyPreserveHost On
ProxyRequests off
ProxyPreserveHost On
# Servers to proxy the connection, or
# List of application servers Usage
ProxyPass / http://localhost:8082/jq
ProxyPassReverse / http://localhost:8082/jq
</VirtualHost>
The problem is when I access the site http://server1.org should be go to
http://localhost:8082/jq but instead it goes to http://localhost:8082/jq/jq and
obvious I get an error 404.
My problem is I dont know why it duplicates the jq suffix if I go to
http://ipserver1:8082/jq there is no problem.
I check the error.log from apache and there is nothing to see.
Any help or any clues will be appreciated.
This is the output when I do http://server1.org
Estado HTTP 404 - /jqjq/
type Informe de estado
mensaje /jqjq/
descripción El recurso requerido no está disponible.
________________________________
Apache Tomcat/8
Thks.!