Tagged Questions
0
votes
1answer
234 views
should I activate keepalive in resin/tomcat ? (with nginx/apache)
I'm using resin(tomcat) back in nginx(apache) parse JSP file only,like this:
location ~ \.jsp {
// 88 is resin(tomcat) port
proxy_pass http://localhost:88;
...
0
votes
1answer
288 views
What is the equivalent Tomcat setup to this Resin configuration?
The Resin configuration (resin.xml) pasted below achieves the following:
Binds the built-in http server to port 8000
Sets the desired maximum memory allocation (-Xmx512m)
Configures the webapp ...