Tagged Questions

7
votes
4answers
3k views

Alternative Reverse Proxy Architecture Directions

Currently, I've got an expensive license for a reverse proxy server in an environment that is mostly Tomcat. I'm thinking of one or both of the following upgrades. Using Squid instead of the ...
0
votes
2answers
228 views

What is a common web architecture for java apps?

Im currently developing a java web application, and im researching how i should combine different types of technology in order to get the most use of a single webserver. My plan so far is to have the ...
0
votes
1answer
452 views

Tomcat's server.xml host container and Varnish

In the past I've used the host container to route the root uri to a tomcat webapp, like this: <Host name="myapp.mydomain.com" appBase="webapps"> <Alias>myapp</Alias> ...