Recently I have started using NGINX, I found that we can use it for reverse proxy, serving static content from itself which can reduce load time. I have a Tomcat/JBoss serve
This worked for me:
location /static { alias /usr/src/app/project/static; }