Apache & Tomcat: ProxyPass and ProxyPassReverse

2020-05-17 21:59发布

I'am having troubles configuring Apache and Tomcat, this is the scenario:

I have an Apache Web Server, running and working normally, I can access to this one just typing:

http://localhost

Also, in this host, I have a Tomcat running and working fine; I've created a mini web-app which files are inside "prueba" directory, I can access typing:

http://localhost:8080/prueba

(I know that Apache is running in 80 port and Tomcat in 8080)

What I want to do is that througt Apache an user can access to 'pruebas'(running on Tomcat), I mean:

http://localhost/prueba

I've readen a lot of this, and I think that there are 2 ways to do this, and I've decided enabling the proxy modules(proxy and proxy_ajp, with a2enmod), also I've readed I must edit this file: sites-available/default, this is the content:

NameVirtualHost *:80
<VirtualHost *:80>
     ServerName 127.0.0.1
     DocumentRoot /var/www

     ProxyRequests Off
     ProxyPreserveHost On

     ProxyPass /static/ !
     ProxyPass / ajp://localhost:8009/
     ProxyPassReverse / ajp://localhost:8009/

.
.
.
     Alias /static/ "/apache/www/"

</VirtualHost>

But this hasn't work propperly :(

I have to say that I've tried whit many changes, ont this 2 lines, like:

     ProxyPass /prueba ajp://localhost:8009/prueba
     ProxyPassReverse /prueba ajp://localhost:8009/prueba

or

     ProxyPass / ajp://localhost:8009/prueba
     ProxyPassReverse / ajp://localhost:8009/prueba

(each time I edit the file, I restart apache)

But when I access to [http://localhost/prueba/], I have: Service Temporarily Unavailable

Has anyone knows why? Thanks in advance guys.

Pd: I'm working with apache 2.2.17 and tomcat6.

7条回答
兄弟一词,经得起流年.
2楼-- · 2020-05-17 22:50

you may try adding:

ProxyPreserveHost On

From the documentation:

"When enabled, this option will pass the Host: line from the incoming request to the proxied host, instead of the hostname specified in the ProxyPass line.

This option should normally be turned Off. It is mostly useful in special configurations like proxied mass name-based virtual hosting, where the original Host header needs to be evaluated by the backend server."

查看更多
登录 后发表回答