I'm running apache2 and have defined the following:
lou@HAL9000:/etc/apache2/
sites-available$ cat degenaro.com.conf
<VirtualHost *:80>
ProxyRequests off
ProxyPreserveHost on
ServerName degenaro.com
ServerAdmin lou@localhost
ProxyPass /degenaro/com ajp://localhost:8080/degenaro.com
ProxyPassReverse /degenaro/com ajp://localhost:8080/degenaro.com
LogLevel warn
</VirtualHost>
I've restated the apache server, and visit
http://localhost/degenaro.com/ and see this in my browser:
Apache/2.4.18 (Ubuntu) Server at localhost Port 80This is most disappointing, as I had expected to be forwarded to the tomcat server to see localhost:8080/
.