Is it possible to configure mod_proxy_ajp so it only passes dynamic content (e.g. *.jsp) to the servlet engine?
With mod_jk, this is easily accomplished:
JkMount /*.jsp ajp13
The desired result is to serve static stuff via Apache using an Alias/Directory directive, and serve *.jsp via AJP.
Oh, and the URL has to be the same.
With mod_jk, this is easily accomplished:
JkMount /*.jsp ajp13
The desired result is to serve static stuff via Apache using an Alias/Directory directive, and serve *.jsp via AJP.
Oh, and the URL has to be the same.