I am trying to configuring apache webserver with tomcat using AJP but i am not sure am i doing it right or not.
Here are the steps that i followed
- Enabled required module in httpd.conf file
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
- Added the ifModule condition in httpd.conf file
ProxyPass / ajp://localhost:8009/
ProxyPassMatch ^(/photos/.*\.jpg)$!
Alias /photos "F:\projects\AL\Photos"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
- And finally adding the connector in server.xml file of tomcat
Now i am trying to test to browse some JSP file at the following location
http://localhost:8009/examples/jsp/jsp2/el/basic-arithmetic.jsp
which is working fine. but i want to browse this file at
http://localhost/examples/jsp/jsp2/el/basic-arithmetic.jsp.
Have i done it right or there is something else that i can do?