I am trying to configure 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 requiredModule 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

<IfModule mod_proxy>  
    ProxyPass / ajp://localhost:8009/  
    ProxyPassMatch ^(/photos/.*\.jpg)$!  
</IfModule>  


Alias /photos "F:\projects\AL\Photos"  


<Directory "F:\projects\AL\Photos">  
    Options Indexes MultiViews  
    AllowOverride None  
    Order allow,deny  
    Allow from all  
</Directory> 

And finally, added the Connector in the server.xml file for Tomcat

<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

Now, I am trying to browse to a JSP file at the following location:

http://localhost:8009/examples/jsp/jsp2/el/basic-arithmetic.jsp

This works fine, but I want to instead browse the JSP at:

http://localhost/examples/jsp/jsp2/el/basic-arithmetic.jsp. 

Have I done it right or there is something else that I can do?

link|improve this question

66% accept rate
feedback

5 Answers

You will also need the 'proxypassreverse' just after 'proxypass'

link|improve this answer
feedback

Have you enabled the AJP connector in Tomcat's server.xml:

<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

You aren't supposed to use AJP port for accessing Tomcat. You can, if you want to, have both an HTTP (8080) and an AJP (8009) connector. In that case you will access Tomcat directly in localhost:8080

Also, as Ryan Fernandes said, you also need the ProxyPassReverse directive.

link|improve this answer
feedback

I have changed the httpd.conf to

  


ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
ProxyPassMatch ^(/photos/.*\.jpg)$!

Alias /photos "F:\projects\AL\Photos"

< Directory "F:\projects\AL\Photos">
	Options Indexes MultiViews
	AllowOverride None
	Order allow,deny
	Allow from all
</Directory>

< / I f M o d u l e>

and then I tried to browse the following url http://localhost/examples/jsp/jsp2/el/basic-arithmetic.jsp which does not work

link|improve this answer
ok i can't add comment properly. the entier config is surrounded by <ifmodule mod_proxy> – x.509 Jul 15 '09 at 10:39
feedback

I want apache httpd running on front and wants to forward the jsp/servlet requests to tomcat only. I want my static pages and photos to be processed by apache and want to configure it through mod_ajp

I have come up with some settings which actually helped me in forwarding the reqeust to tomcat. But now i can't add ProxyPassMatch directive to it.. here are the configurations i have done in httpd.conf file

<VirtualHost *:80>
    ServerName localhost
    <Proxy *>
        AddDefaultCharset Off
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPass / ajp://localhost:8009/
    ProxyPassReverse / ajp://localhost:8009/
    #ProxyPassMatch ^(/photos/.*\.jpg)$!

    Alias /photos "F:\projects\AL\Photos"

    <Directory "F:\projects\AL\Photos">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

How can if some request is for photos, don't forward, else forward it. Suggestions?

P.S: currently i have ProxyPassMatch commented out

link|improve this answer
feedback

Use the <Location> directive.

As in: http://stuff.mit.edu/afs/athena/project/stellar-dist/www/stellar2/apache2/stellar2-ajp-proxy.conf

NOTE: It is very important to add the "/" after ending your ajp path, else the configuration will throw a 404 error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.